12 lines
196 B
Go
12 lines
196 B
Go
|
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{})
|
||
|
}
|