ai-css/tmpl/login.go
2026-02-12 08:50:11 +00:00

21 lines
372 B
Go

package tmpl
import (
"ai-css/tools"
"github.com/gin-gonic/gin"
"net/http"
)
// 登陆界面
func PageLogin(c *gin.Context) {
if noExist, _ := tools.IsFileNotExist("./install.lock"); noExist {
c.Redirect(302, "/install")
}
c.HTML(http.StatusOK, "login.html", nil)
}
// 绑定界面
func PageBind(c *gin.Context) {
c.HTML(http.StatusOK, "bind.html", gin.H{})
}