diff options
Diffstat (limited to 'templates/signup.rs.html')
-rw-r--r-- | templates/signup.rs.html | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/templates/signup.rs.html b/templates/signup.rs.html index 354dae6..a482fc2 100644 --- a/templates/signup.rs.html +++ b/templates/signup.rs.html @@ -1,8 +1,9 @@ @use super::base_html; +@use crate::Notification; -@() +@(notification: Option<Notification>) -@:base_html(false, { +@:base_html(false, notification, { <form action="/signup" method="post"> <label for="username">username:</label> <input type="text" id="username" name="username" required="true" /> @@ -10,4 +11,4 @@ <input type="text" id="password" name="password" required="true" /> <button type="submit">sign up</button> </form> -})
\ No newline at end of file +}) |