summaryrefslogblamecommitdiffstats
path: root/templates/signup.rs.html
blob: 179ec9836eeacabe4bd4ae00679b2531ad51117c (plain) (tree)
1
2
3
4
5
6
                      
                                       
 
                                     
 
                                 






                                                                     
  
@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>
})