this is probably a broken commit

This commit is contained in:
2023-04-12 09:35:18 -07:00
parent 8afef87a56
commit fe41c19182
38 changed files with 1163 additions and 32 deletions

10
templates/login.html Normal file
View File

@@ -0,0 +1,10 @@
{% extends "base.html" %}
{% block title %}Login Page{% endblock %}
{% block content %}
<form action="#" method="post">
<p>Name:</p>
<p><input type="text" name="nm" /></p>
<p><input type="submit" value="submit"/></p>
</form>
{% endblock %}