-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
56 lines (49 loc) · 1.27 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package main
import (
"html/template"
"net/http"
"log"
)
type result struct {
Symbol string
Err string
Text string // Store the text value
Banner string // Store the selected banner value
}
type Email struct{
MsgValid string
MsgError string
}
var (
templates = template.Must(template.ParseGlob("templates/*.html"))
res result
msg Email
)
func main() {
/*http.HandleFunc("/", getHandler)
http.HandleFunc("/ascii-art", postHandler)
http.HandleFunc("/Js/", jsHandler)
http.HandleFunc("/assets/js/", jsHandler)
http.HandleFunc("/assets/css/", cssHandler)
fmt.Println("Server is running at http://localhost:8080")
http.ListenAndServe(":8080", nil)*/
server := createServer()
registerRoutes()
// Start server
err := server.StartServer()
if err != nil {
// If there's an error, store it and show it in the error page
log.Fatal("An error occurred while starting the server:", err)
}
}
func renderTemplate(w http.ResponseWriter, title string, result *result) {
err := templates.ExecuteTemplate(w, "layout.html", map[string]interface{}{
"Title": title,
"Result": result, // Pass the result to the template
"Msg":msg,
})
// Server error
if err != nil {
errorHandler(w, http.StatusInternalServerError)
}
}