diff --git a/pages/landing.tmpl b/pages/landing.tmpl
index 2131b40..8716ead 100644
--- a/pages/landing.tmpl
+++ b/pages/landing.tmpl
@@ -1,203 +1,203 @@
{{define "head"}}
Reset your password
{{ if .DisablePasswordAuth }}
Password login is disabled on this server , so it's not possible to reset your password.
{{ else if not .EmailEnabled }}
{{ else }}
{{if .Flashes}}
{{range .Flashes}}{{.}} {{end}}
{{end}}
{{if .IsResetting}}
{{else if not .IsSent}}
{{end}}
{{ end }}
{{end}}
diff --git a/pages/signup.tmpl b/pages/signup.tmpl
index b1bb50d..540db3f 100644
--- a/pages/signup.tmpl
+++ b/pages/signup.tmpl
@@ -1,180 +1,180 @@
{{define "head"}}
Sign up — {{.SiteName}}
{{end}}
{{define "content"}}
Sign up
{{ if .Error }}
{{.Error}}
{{ else }}
{{if .Flashes}}
{{range .Flashes}}{{.}} {{end}}
{{end}}
{{template "oauth-buttons" .}}
{{if not .DisablePasswordAuth}}
{{end}}
{{ end }}
{{end}}
diff --git a/templates/user/settings.tmpl b/templates/user/settings.tmpl
index 829e4be..fbec62c 100644
--- a/templates/user/settings.tmpl
+++ b/templates/user/settings.tmpl
@@ -1,231 +1,231 @@
{{define "settings"}}
{{template "header" .}}
{{if .Silenced}}
{{template "user-silenced"}}
{{end}}
{{if .IsLogOut}}Before you go...{{else}}Account Settings{{end}}
{{if .Flashes}}
{{range .Flashes}}{{.}} {{end}}
{{end}}
{{ if .IsLogOut }}
Please add an email address and/or passphrase so you can log in again later.
{{ else }}
Change your account settings here.
{{ end }}
{{if not .DisablePasswordAuth}}
{{end}}
{{ if .OauthSection }}
{{ if .OauthAccounts }}
Linked Accounts
These are your linked external accounts.
{{ range $oauth_account := .OauthAccounts }}
{{ end }}
{{ end }}
{{ if or .OauthSlack .OauthWriteAs .OauthGitLab .OauthGeneric .OauthGitea }}
Link External Accounts
Connect additional accounts to enable logging in with those providers, instead of using your username and password.
{{ if .OauthWriteAs }}
{{ end }}
{{ if .OauthSlack }}
{{ end }}
{{ if .OauthGitLab }}
{{ end }}
{{ if .OauthGitea }}
{{ end }}
{{ if .OauthGeneric }}
{{ end }}
{{ end }}
{{ end }}
{{ if and .OpenDeletion (not .IsAdmin) }}
Incinerator
Delete your account
Permanently erase all your data, with no way to recover it.
Delete your account...
{{end}}
Are you sure?
This action cannot be undone. It will immediately and permanently erase your account, including your blogs and posts. Before continuing, you might want to export your data .
If you're sure, please type {{.Username}} to confirm.
{{template "footer" .}}
{{end}}