blob: c706074dcd2bee0819fa78abd05e1565a77a8b4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 %}
|