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) // }