Files
B42/at_django_boilerplate/accounts/templates/registration/create_user.html
2026-01-07 12:09:20 +05:30

22 lines
480 B
HTML
Executable File

<!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>