flask-mongo / templates /login.html
Rahul23232's picture
Update templates/login.html
9f917dc verified
raw
history blame contribute delete
683 Bytes
<!DOCTYPE html>
<html>
<head>
<title>Login</title>
</head>
<body>
<h2>Login</h2>
<form method="POST">
<input type="text" name="username" placeholder="Enter username" required><br><br>
<input type="password" name="password" placeholder="Enter password" required><br><br>
<label><input type="checkbox" name="remember"> Remember Me</label><br><br>
<button type="submit">Login</button>
</form>
<p>Don't have an account? <a href="{{ url_for('signup') }}">Signup</a></p>
<hr>
<br>
<div>
<a href="https://rahul23232-flask-mongo.hf.space/" style="color:green;" target="_blank">Open in new Tab</a>
<br>
</div>
</body>
</html>