feat: enhance index page with additional settings buttons and style adjustments

This commit is contained in:
Prad Nukala
2024-12-10 13:27:07 -05:00
parent ba82d707d0
commit e38a045de3
9 changed files with 34 additions and 217 deletions
+19
View File
@@ -0,0 +1,19 @@
package session
import "github.com/labstack/echo/v4"
func IsUniqueHandle(c echo.Context, handle string) bool {
return true
}
func IsValidFirstName(c echo.Context, firstName string) bool {
return true
}
func IsValidLastInitial(c echo.Context, lastInitial string) bool {
return true
}
func IsHuman(c echo.Context, sum int) bool {
return true
}
-1
View File
@@ -1 +0,0 @@
package session