Migrate from templates to Gomponents (#103)

This commit is contained in:
Mike Stefanello 2025-03-05 20:01:58 -05:00 committed by GitHub
parent 0bf9ab7189
commit 051d032038
104 changed files with 2768 additions and 2824 deletions

25
pkg/routenames/names.go Normal file
View file

@ -0,0 +1,25 @@
package routenames
const (
Home = "home"
About = "about"
Contact = "contact"
ContactSubmit = "contact.submit"
Login = "login"
LoginSubmit = "login.submit"
Register = "register"
RegisterSubmit = "register.submit"
ForgotPassword = "forgot_password"
ForgotPasswordSubmit = "forgot_password.submit"
Logout = "logout"
VerifyEmail = "verify_email"
ResetPassword = "reset_password"
ResetPasswordSubmit = "reset_password.submit"
Search = "search"
Task = "task"
TaskSubmit = "task.submit"
Cache = "cache"
CacheSubmit = "cache.submit"
Files = "files"
FilesSubmit = "files.submit"
)