csrf token
This commit is contained in:
parent
a31ff56055
commit
963fd34724
2
http.go
2
http.go
@ -72,6 +72,7 @@ func HttpGetRecover(c *gin.Context) {
|
||||
log.WithFields(log.Fields{}).Debugf("starting")
|
||||
defer log.WithFields(log.Fields{}).Debugf("done")
|
||||
|
||||
SetCSRFToken(c)
|
||||
c.HTML(http.StatusOK, "page-recover.html", gin.H{})
|
||||
}
|
||||
|
||||
@ -79,6 +80,7 @@ func HttpGetSignIn(c *gin.Context) {
|
||||
log.WithFields(log.Fields{}).Debugf("starting")
|
||||
defer log.WithFields(log.Fields{}).Debugf("done")
|
||||
|
||||
SetCSRFToken(c)
|
||||
c.HTML(http.StatusOK, "page-signin.html", gin.H{})
|
||||
}
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
// Code generated by version.sh (@generated) DO NOT EDIT.
|
||||
package main
|
||||
var githash = "060933a"
|
||||
var githash = "a31ff56"
|
||||
var branch = "master"
|
||||
var buildstamp = "2024-11-17_22:40:33"
|
||||
var commits = "106"
|
||||
var version = "060933a-b106 - 2024-11-17_22:40:33"
|
||||
var buildstamp = "2024-11-17_22:42:14"
|
||||
var commits = "107"
|
||||
var version = "a31ff56-b107 - 2024-11-17_22:42:14"
|
||||
|
Loading…
Reference in New Issue
Block a user