1
0
Fork 0
This repository has been archived on 2025-03-30. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
csb-project-1/notes/templates/login.html

17 lines
508 B
HTML
Raw Normal View History

2024-11-24 16:11:22 +02:00
<!DOCTYPE html>
<html lang="en">
<body>
{% if login_failed %}
<p> Incorrect username or password! </p>
{% endif %}
<form action="/accounts/login/" method="POST">
{% csrf_token %}
<label for="username">Username:</label><br>
<input type="text" id="username" name="username"><br><br>
<label for="password">Password:</label><br>
<input type="password" id="password" name="password"><br><br>
<input type="submit" value="Log in">
</form>
</body>
</html>