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/register.html
2017-10-07 11:33:10 +03:00

17 lines
469 B
HTML

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