diff options
author | JJ <nicetry@noemail.com> | 2025-03-19 14:53:53 +0000 |
---|---|---|
committer | JJ <nicetry@noemail.com> | 2025-03-19 14:53:53 +0000 |
commit | 84b036b926d90b52956350d99b3a070b3dd1d7ac (patch) | |
tree | f7e40a6ef8f0eb56136340f9638dd6a17b5366e1 /templates/pages/signup.html |
first commit
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 %} |