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
2024-11-24 16:45:26 +02:00

16 lines
508 B
HTML

<!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>