Update main.go
This commit is contained in:
parent
8f12a9fa2b
commit
1a2331bed6
22
main.go
22
main.go
@ -9,18 +9,8 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func opisStołówkaZPM(w http.ResponseWriter, r *http.Request) {
|
func opisStołówkaZPM(w http.ResponseWriter, r *http.Request) {
|
||||||
t, _ := template.ParseFiles("StronaGlowna.tmpl")
|
t, _ := template.ParseFiles("StronaGlowna.gtpl")
|
||||||
t.Execute(w, nil)
|
t.Execute(w, nil)
|
||||||
//r.ParseForm()
|
|
||||||
//fmt.Println(r.Form)
|
|
||||||
//fmt.Println("path", r.URL.Path)
|
|
||||||
//fmt.Println("scheme", r.URL.Scheme)
|
|
||||||
//fmt.Println(r.Form["url_long"])
|
|
||||||
//for k, v := range r.Form {
|
|
||||||
// fmt.Println("key:", k)
|
|
||||||
// fmt.Println("val:", strings.Join(v, ""))
|
|
||||||
//}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func panel(w http.ResponseWriter, r *http.Request) {
|
func panel(w http.ResponseWriter, r *http.Request) {
|
||||||
@ -30,19 +20,19 @@ func panel(w http.ResponseWriter, r *http.Request) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func login(w http.ResponseWriter, r *http.Request) {
|
func login(w http.ResponseWriter, r *http.Request) {
|
||||||
|
Here:
|
||||||
fmt.Println("method:", r.Method)
|
fmt.Println("method:", r.Method)
|
||||||
if r.Method == "GET" {
|
if r.Method == "GET" {
|
||||||
t, _ := template.ParseFiles("login.html")
|
t, _ := template.ParseFiles("login.gtpl")
|
||||||
t.Execute(w, nil)
|
t.Execute(w, nil)
|
||||||
} else {
|
} else {
|
||||||
r.ParseForm()
|
r.ParseForm()
|
||||||
fmt.Println("username:", r.Form["username"])
|
fmt.Println("username:", r.Form["username"])
|
||||||
fmt.Println("password:", r.Form["password"])
|
fmt.Println("password:", r.Form["password"])
|
||||||
|
if len(r.Form["username"][0]) == 0 {
|
||||||
|
goto Here
|
||||||
|
}
|
||||||
}
|
}
|
||||||
//if r.Method == "POST" {
|
|
||||||
// t, _ := template.ParseFiles("panel.gtpl")
|
|
||||||
// t.Execute(w, nil)
|
|
||||||
//}
|
|
||||||
username := r.Form["username"]
|
username := r.Form["username"]
|
||||||
password := r.Form["password"]
|
password := r.Form["password"]
|
||||||
zaloguj := "Wpisane wartości:"
|
zaloguj := "Wpisane wartości:"
|
||||||
|
Loading…
Reference in New Issue
Block a user