Add privacy policy and terms of service pages

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-03 15:17:16 -04:00
parent d005080aca
commit 1f0effb902
5 changed files with 90 additions and 1 deletions
+8
View File
@@ -776,3 +776,11 @@ func (s *Server) handleDeleteSlot(w http.ResponseWriter, r *http.Request) {
}
pageTmpl["slots"].ExecuteTemplate(w, "slots-inner", data)
}
func (s *Server) handlePrivacy(w http.ResponseWriter, r *http.Request) {
pageTmpl["privacy"].ExecuteTemplate(w, "layout", nil)
}
func (s *Server) handleTerms(w http.ResponseWriter, r *http.Request) {
pageTmpl["terms"].ExecuteTemplate(w, "layout", nil)
}