From 2407c1a4a55d17817b31f7ca5cac9d68b27f536c Mon Sep 17 00:00:00 2001 From: cel 🌸 Date: Mon, 11 Dec 2023 06:02:00 +0000 Subject: implement signup --- templates/base.rs.html | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'templates/base.rs.html') diff --git a/templates/base.rs.html b/templates/base.rs.html index 5b1a324..64a8d4e 100644 --- a/templates/base.rs.html +++ b/templates/base.rs.html @@ -1,6 +1,7 @@ @use super::statics::*; +@use crate::Notification; -@(authenticated: bool, body: Content) +@(authenticated: bool, notification: Option, body: Content) @@ -15,11 +16,16 @@ + @if let Some(notification) = notification { +
@notification.message
+ } @:body() -- cgit