Add support for generating the QR code in the page.

This commit is contained in:
Eli Ribble 2025-11-05 21:21:58 +00:00
parent 24aa1b88ef
commit c99a5a3f62
No known key found for this signature in database
6 changed files with 77 additions and 47 deletions

View file

@ -58,6 +58,7 @@ func main() {
r.Use(sessionManager.LoadAndSave)
r.Get("/", getRoot)
r.Get("/qr-code/report/{code}", getQRCodeReport)
r.Get("/report", getReport)
r.Post("/signin", postSignin)
r.Get("/signup", getSignup)