diff options
Diffstat (limited to 'templates/pages/signup.html')
-rw-r--r-- | templates/pages/signup.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/templates/pages/signup.html b/templates/pages/signup.html new file mode 100644 index 0000000..c706074 --- /dev/null +++ b/templates/pages/signup.html @@ -0,0 +1,18 @@ +{% extends "base.html" %} {% block title %}signup{% endblock %} {% block heading +%} +<h1>signup*</h1> +{% endblock %} {% block content %} +<form hx-post="/signup" hx-trigger="submit load" hx-target="#message"> + <label for="username">username</label> + <input type="text" name="username" id="username" /> + <label for="password">password</label> + <input type="password" name="password" id="password" /> + <button type="submit">submit</button> +</form> +<p id="message"></p> +<p> + * index.cooking does not store <i>any</i> personal information about you, + including email. So be sure to keep your login information safe, as it won't + be recoverable. +</p> +{% endblock %} |