This commit is contained in:
teras
2017-10-07 11:23:04 +03:00
commit 22acfdd029
19 changed files with 660 additions and 0 deletions

17
templates/register.html Normal file
View File

@@ -0,0 +1,17 @@
<!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>