This repository has been archived on 2024-07-30. You can view files and clone it, but cannot push or open issues or pull requests.
Files
homepage-2017/templates/login.html
2017-10-07 12:32:56 +03:00

17 lines
410 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Login</title>
</head>
<body>
<h1>login</h1>
<h1>{{ auth_user }}</h1>
<form id="reg" action="/login/" method="POST">
{% csrf_token %}
Username: <input type="text" name="username"><br>
Password: <input type="password" name="password"><br>
<input type="submit" />
</form>
</body>
</html>