mirror of
https://github.com/1f349/tulip.git
synced 2024-12-23 00:34:07 +00:00
Respond with OTP error message
This commit is contained in:
parent
f9ed40b8e5
commit
9fccb563e1
@ -9,6 +9,7 @@ import (
|
|||||||
"github.com/google/uuid"
|
"github.com/google/uuid"
|
||||||
"github.com/julienschmidt/httprouter"
|
"github.com/julienschmidt/httprouter"
|
||||||
"html/template"
|
"html/template"
|
||||||
|
"log"
|
||||||
"net/http"
|
"net/http"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -170,7 +171,8 @@ func (h *HttpServer) EditOtpPost(rw http.ResponseWriter, req *http.Request, _ ht
|
|||||||
}
|
}
|
||||||
err := otp.Validate(req.FormValue("code"))
|
err := otp.Validate(req.FormValue("code"))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
http.Error(rw, "400 Bad Request: invalid OTP code", http.StatusBadRequest)
|
http.Error(rw, "400 Bad Request: invalid OTP code: "+err.Error(), http.StatusBadRequest)
|
||||||
|
log.Println()
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user