summaryrefslogtreecommitdiffstats
path: root/flaskr/templates/auth/register.html
diff options
context:
space:
mode:
authorMitsuo Tokumori <[email protected]>2023-10-27 19:56:12 -0500
committerMitsuo Tokumori <[email protected]>2023-10-27 19:56:12 -0500
commitf59b3ba871f1086beb147c2de46f0cd60ce070c2 (patch)
treed9064e0ee41d58437f42c7e7c2a636000f50e18f /flaskr/templates/auth/register.html
parent87e6ced8ecd0ba54af1f67319fccf96c13ba6261 (diff)
downloadustayml-f59b3ba871f1086beb147c2de46f0cd60ce070c2.tar.gz
ustayml-f59b3ba871f1086beb147c2de46f0cd60ce070c2.tar.bz2
ustayml-f59b3ba871f1086beb147c2de46f0cd60ce070c2.zip
Add auth view and static files
Diffstat (limited to 'flaskr/templates/auth/register.html')
-rw-r--r--flaskr/templates/auth/register.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/flaskr/templates/auth/register.html b/flaskr/templates/auth/register.html
new file mode 100644
index 0000000..a3c73cc
--- /dev/null
+++ b/flaskr/templates/auth/register.html
@@ -0,0 +1,15 @@
+{% extends 'base.html' %}
+
+{% block header %}
+ <h1>{% block title %}Register{% endblock %}</h1>
+{% endblock %}
+
+{% block content %}
+ <form method="post">
+ <label for="username">Username</label>
+ <input name="username" id="username" required>
+ <label for="password">Password</label>
+ <input type="password" name="password" id="password" required>
+ <input type="submit" value="Register">
+ </form>
+{% endblock %} \ No newline at end of file