mirror of
https://github.com/renorris/openfsd
synced 2026-03-22 14:35:36 +08:00
18 lines
335 B
Go
18 lines
335 B
Go
package main
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func (s *Server) handleFrontendLanding(c *gin.Context) {
|
|
writeTemplate(c, "landing", nil)
|
|
}
|
|
|
|
func (s *Server) handleFrontendLogin(c *gin.Context) {
|
|
writeTemplate(c, "login", nil)
|
|
}
|
|
|
|
func (s *Server) handleFrontendDashboard(c *gin.Context) {
|
|
writeTemplate(c, "dashboard", nil)
|
|
}
|