base setup
This commit is contained in:
21
at_django_boilerplate/accounts/templates/registration/create_user.html
Executable file
21
at_django_boilerplate/accounts/templates/registration/create_user.html
Executable file
@@ -0,0 +1,21 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Create User</title>
|
||||
</head>
|
||||
<body>
|
||||
<h2>Create User</h2>
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{{ form.as_p }}
|
||||
<button type="submit">Create</button>
|
||||
</form>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="{% url 'index' %}">Index</a></li>
|
||||
<li><a href="{% url 'home' %}">Home</a></li>
|
||||
<li><a href="{% url 'user_list' %}">User List</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user