mercury/web/auth/login.go

12 lines
196 B
Go
Raw Normal View History

2023-09-03 04:11:56 +02:00
package auth
import (
"net/http"
"github.com/flosch/pongo2/v6"
)
func (app *Auth) GetLogin(w http.ResponseWriter, r *http.Request) {
app.Template(w, r, "auth/login.tpl", pongo2.Context{})
}