diff options
author | cel 🌸 <cel@blos.sm> | 2023-10-04 19:55:17 +0100 |
---|---|---|
committer | cel 🌸 <cel@blos.sm> | 2023-10-04 19:59:53 +0100 |
commit | 5d395d4ed73061b247c32dc63db6ddfa2dd62d39 (patch) | |
tree | 084df0c83294123c6e884fa46d022f120ba5de86 /templates/signup.rs.html | |
download | pinussy-5d395d4ed73061b247c32dc63db6ddfa2dd62d39.tar.gz pinussy-5d395d4ed73061b247c32dc63db6ddfa2dd62d39.tar.bz2 pinussy-5d395d4ed73061b247c32dc63db6ddfa2dd62d39.zip |
initial commit
Diffstat (limited to 'templates/signup.rs.html')
-rw-r--r-- | templates/signup.rs.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/signup.rs.html b/templates/signup.rs.html new file mode 100644 index 0000000..354dae6 --- /dev/null +++ b/templates/signup.rs.html @@ -0,0 +1,13 @@ +@use super::base_html; + +@() + +@:base_html(false, { +<form action="/signup" method="post"> + <label for="username">username:</label> + <input type="text" id="username" name="username" required="true" /> + <label for="username">password:</label> + <input type="text" id="password" name="password" required="true" /> + <button type="submit">sign up</button> +</form> +})
\ No newline at end of file |