Initial commit

This commit is contained in:
2024-06-28 14:04:21 -04:00
commit 989da8396e
11 changed files with 247 additions and 0 deletions

15
templates/base.html Normal file
View File

@@ -0,0 +1,15 @@
<html>
<head>
<meta charset="utf-8">
<title>{% block title %}Django Auth{% endblock %}</title>
</head>
<body>
<main>
{% block content %}
{% endblock %}
</main>
</body>
</html>