Created login and signup forms

This commit is contained in:
2023-12-31 19:03:29 +00:00
parent 2f63b6e89c
commit 03c7fc6918
9 changed files with 228 additions and 97 deletions

13
templates/login.html Normal file
View File

@ -0,0 +1,13 @@
<link rel="stylesheet" href="{{url_for('static', filename='css/loginform.css')}}" />
<div id="login-form-wrap">
<h2>Login</h2>
<form class="login-form" method="POST">
<input type="text" id="username" name="username" placeholder="Username" required>
<input type="password" id="password" name="password" placeholder="Password" required>
<input type="submit" id="login" value="Login">
</form>
<div id="create-account-wrap">
<p>Not a member? <a href="signup">Create Account</a><p>
</div>
</div>