aboutsummaryrefslogtreecommitdiff
path: root/profile.go
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2023-09-26 08:40:41 +0200
committerQuentin Dufour <quentin@deuxfleurs.fr>2023-09-26 08:40:41 +0200
commit706ff58a6f6608719feda15075d50f978df39c5b (patch)
treed0b655454d5e13ed2238060fee27fc0d951d64c8 /profile.go
parentd8633d7fb89b55996f25e1a67180408c805ba15f (diff)
downloadguichet-706ff58a6f6608719feda15075d50f978df39c5b.tar.gz
guichet-706ff58a6f6608719feda15075d50f978df39c5b.zip
format
Diffstat (limited to 'profile.go')
-rw-r--r--profile.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/profile.go b/profile.go
index 58e7d96..bd7e299 100644
--- a/profile.go
+++ b/profile.go
@@ -8,7 +8,7 @@ import (
)
type ProfileTplData struct {
- User *LoggedUser
+ User *LoggedUser
ErrorMessage string
Success bool
Mail string
@@ -29,7 +29,7 @@ func handleProfile(w http.ResponseWriter, r *http.Request) {
}
data := &ProfileTplData{
- User: user,
+ User: user,
ErrorMessage: "",
Success: false,
}