Files
training.django/source/authentication/users/templates/registration/login.html
Steve Kossouho e3ebf6bf4f Add documentation and source
Added documentation, source and extra files.
2025-07-02 20:26:50 +02:00

15 lines
281 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Login</title>
</head>
<body>
<form action="" method="post" name="login-form">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" name="login-button" value="Login">
</form>
</body>
</html>