summaryrefslogtreecommitdiffstats
path: root/templates/signup.rs.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/signup.rs.html')
-rw-r--r--templates/signup.rs.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/signup.rs.html b/templates/signup.rs.html
new file mode 100644
index 0000000..354dae6
--- /dev/null
+++ b/templates/signup.rs.html
@@ -0,0 +1,13 @@
+@use super::base_html;
+
+@()
+
+@:base_html(false, {
+<form action="/signup" method="post">
+ <label for="username">username:</label>
+ <input type="text" id="username" name="username" required="true" />
+ <label for="username">password:</label>
+ <input type="text" id="password" name="password" required="true" />
+ <button type="submit">sign up</button>
+</form>
+}) \ No newline at end of file