HighNeed_projekt_inz/highneed/events/templates/registration/login.html
Mikhail Ronchyk a3c0e6c382 loginform
2021-04-10 20:46:08 +03:00

15 lines
244 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Login</title>
</head>
<body>
<h2>Log In</h2>
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<button type="submit">Log In</button>
</form>
</body>
</html>