blob: 99d6021e98dda229c4159b9251fb4c0eb81bd90a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{% 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" />
<label for="password-confirm">confirm password</label>
<input type="password" name="password-confirm" id="password-confirm" />
<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 %}
|