aboutsummaryrefslogtreecommitdiff
path: root/templates/register.rs.html
diff options
context:
space:
mode:
authorCara Salter <cara@devcara.com>2022-08-24 13:15:31 -0400
committerCara Salter <cara@devcara.com>2022-08-24 13:15:31 -0400
commit9de84e3fbae0f2893e9c4f1425afa06899959bf7 (patch)
treef96d33d881954edc9b03df0bc821fb35eb59c577 /templates/register.rs.html
parent4b616447715b8129ae322341959e1c2bfabbd10e (diff)
downloadnccd-9de84e3fbae0f2893e9c4f1425afa06899959bf7.tar.gz
nccd-9de84e3fbae0f2893e9c4f1425afa06899959bf7.zip
flaskify
Diffstat (limited to 'templates/register.rs.html')
-rw-r--r--templates/register.rs.html27
1 files changed, 0 insertions, 27 deletions
diff --git a/templates/register.rs.html b/templates/register.rs.html
deleted file mode 100644
index 5c2e3f2..0000000
--- a/templates/register.rs.html
+++ /dev/null
@@ -1,27 +0,0 @@
-@use super::{header_html, footer_html};
-
-@()
-
-@:header_html()
-<h1>Create your NCCd Account</h1>
-<form method="POST" action="/dash/auth/register">
- <div>
- <label for="email">Email</label>
- <input type="text" id="email" name="email">
- </div>
- <div>
- <label for="prefname">Preferred name</label>
- <input type="text" id="prefname" name="prefname">
- </div>
- <div>
- <label for="password">Password</label>
- <input type="password" id="password" name="password">
- </div>
- <div>
- <label for="password-confirm">Confirm password</label>
- <input type="password" id="password-confirm" name="password-confirm">
- </div>
- <input type="submit" class="accent">Submit</input>
-</form>
-Or try <a href="/dash/auth/login">logging in</a>
-@:footer_html()