base setup

This commit is contained in:
2026-01-07 12:09:20 +05:30
commit 0c275efea1
278 changed files with 11228 additions and 0 deletions

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