From 2407c1a4a55d17817b31f7ca5cac9d68b27f536c Mon Sep 17 00:00:00 2001
From: cel 🌸 <cel@blos.sm>
Date: Mon, 11 Dec 2023 06:02:00 +0000
Subject: implement signup

---
 templates/signup.rs.html | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

(limited to 'templates/signup.rs.html')

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
+})
-- 
cgit