10 lines
154 B
Go
10 lines
154 B
Go
|
|
package handler
|
||
|
|
|
||
|
|
import (
|
||
|
|
"net/http"
|
||
|
|
)
|
||
|
|
|
||
|
|
func (h *Handler) showLoginView(w http.ResponseWriter, r *http.Request) {
|
||
|
|
h.renderLayout(w, "login", nil, "")
|
||
|
|
}
|