diff --git a/assets/templates/archetype.tmpl b/assets/templates/archetype.tmpl index 17e00da777e1ff4df79b187aae3b47404c98865d..00755de5959af3cc2baac9183a685766fc67255d 100644 --- a/assets/templates/archetype.tmpl +++ b/assets/templates/archetype.tmpl @@ -60,7 +60,7 @@ class="fab fa-instagram"></i> Instagram</a></li> <li><a href="https://discord.gg/aovtr"> <i class="fab fa-discord"></i> Discord</a> - <li><a href="{{.auth_ref}}"> <i class="fas fa-user"></i> {{.auth_text}} (Click to log out)</a> + <li><a href="{{.auth_ref}}"> <i class="fas fa-user"></i> {{.auth_text}}</a> </li> </ul> </div> diff --git a/user.go b/user.go index 5e042bc613fc261733caaad804939aa5598e9d40..ae0ff073b527e8450bf95028bc37c9330022f576 100644 --- a/user.go +++ b/user.go @@ -212,7 +212,7 @@ func getAuthButton(user *discordgo.User) (authText, authRef string) { authText = "Login" authRef = "/auth/login" if user != nil { - authText = user.Username + authText = user.Username + " (Click to log out)" authRef = "/auth/logout" } return