Skip to content
Snippets Groups Projects
Commit 7d6df66e authored by jensilo's avatar jensilo
Browse files

show email as disabled input in user profile as this could be interesting after logging in

parent f1fbc2e8
No related branches found
No related tags found
No related merge requests found
......@@ -51,6 +51,11 @@
<div class="invalid-feedback">{{ t $validation.GenericErrorKey }}</div>
{{ end }}
</div>
<div class="col-12 mt-2">
<label for="email" class="form-label">{{ t "user.email" }}</label>
<input id="email" type="email" class="form-control" disabled value="{{ .Extra.User.Email }}"/>
<div class="form-text">{{ t "user.email.help" }}</div>
</div>
<div class="col mt-2">
<button type="submit" class="btn btn-primary">{{ t "harmony.generic.save" }}</button>
</div>
......
......@@ -3,6 +3,7 @@
"firstname": "Vorname",
"lastname": "Nachname",
"email": "E-Mail",
"email.help": "Die E-Mail-Adresse wird durch den OAuth-Anbieter, mit dem Sie sich anmelden, festgelegt. Sie können diese E-Mail-Adresse nicht ändern. Wir nutzen diese E-Mail-Adresse, um Sie zu identifizieren.",
"auth": {
"login": {
"title": "Anmelden",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment