All checks were successful
Build Docker Image / Explore-Gitea-Actions (push) Successful in 47s
19 lines
364 B
Go
19 lines
364 B
Go
package service
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"me-fit/template"
|
|
"me-fit/template/auth"
|
|
)
|
|
|
|
func SignInPage(w http.ResponseWriter, r *http.Request) {
|
|
signIn := auth.SignIn()
|
|
template.Layout(signIn).Render(r.Context(), w)
|
|
}
|
|
|
|
// func SignUpPage(w http.ResponseWriter, r *http.Request) {
|
|
// signIn := auth.SignUp()
|
|
// template.Layout(signIn).Render(r.Context(), w)
|
|
// }
|