Spaces:
Runtime error
Runtime error
File size: 348 Bytes
53d77b0 | 1 2 3 4 5 6 7 8 9 10 | <!doctype html>
<title>Login</title>
<h1>Login</h1>
<form method="post">
<input type="text" name="username" placeholder="Username" required>
<input type="password" name="password" placeholder="Password" required>
<button type="submit">Login</button>
</form>
<a href="{{ url_for('signup') }}">Don't have an account? Sign Up</a>
|