Add basic signup page outline

This commit is contained in:
Eli Ribble 2025-11-04 00:02:51 +00:00
parent 56eaa4ed1c
commit 8203c50b08
No known key found for this signature in database
4 changed files with 124 additions and 1 deletions

View file

@ -45,6 +45,7 @@ func main() {
r.Use(sessionManager.LoadAndSave)
r.Get("/", getRoot)
r.Get("/signup", getSignup)
r.Get("/favicon.ico", getFavicon)
localFS := http.Dir("./static")