StarlioX/web/pages/settings.go

29 lines
547 B
Go
Raw Normal View History

2022-09-18 19:28:19 +03:00
package page
import (
"github.com/Redume/EveryNasa/functions"
"net/http"
"strings"
)
2022-09-18 19:28:19 +03:00
func SettingsHandler(w http.ResponseWriter, r *http.Request) {
con := functions.Connected()
if con == false {
http.ServeFile(w, r, "web/src/errors/504.html")
return
}
userAgent := r.UserAgent()
if strings.Contains(userAgent, "Mobile") {
http.ServeFile(w, r, "web/src/errors/mobile.html")
return
}
if r.URL.Path != "/settings" {
http.ServeFile(w, r, "web/src/errors/404.html")
return
}
2022-09-18 19:28:19 +03:00
http.ServeFile(w, r, "web/src/settings.html")
}