Add phone call page

Just mocks, and probably not great ones at that.
This commit is contained in:
Eli Ribble 2025-11-10 22:42:19 +00:00
parent ae46b03e4b
commit 89c4072a35
No known key found for this signature in database
6 changed files with 438 additions and 1 deletions

View file

@ -42,6 +42,10 @@ func getFavicon(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, "static/favicon.ico")
}
func getPhoneCall(w http.ResponseWriter, r *http.Request) {
htmlPhoneCall(w)
}
func getQRCodeReport(w http.ResponseWriter, r *http.Request) {
code := chi.URLParam(r, "code")
if code == "" {