blob: 179ec9836eeacabe4bd4ae00679b2531ad51117c (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | @use super::base_html;
@use crate::notification::Notification;
@(notification: Option<Notification>)
@:base_html(None, notification, {
<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>
})
 |