From 2086ff3547cf3749d47af9f034f649e3d73ed23b Mon Sep 17 00:00:00 2001 From: James Tombleson Date: Sun, 14 Apr 2024 19:36:45 -0700 Subject: [PATCH] simple loginPost to avoid double layouts --- views/auth/loginPost.templ | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 views/auth/loginPost.templ diff --git a/views/auth/loginPost.templ b/views/auth/loginPost.templ new file mode 100644 index 0000000..d1c7556 --- /dev/null +++ b/views/auth/loginPost.templ @@ -0,0 +1,7 @@ +package auth + +import "templ-test/views/components/bootstrap" + +templ LoginPost() { + @bootstrap.BootstrapAlert("Login successful!", bootstrap.VariantSuccess) +}