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