gitea

Development moved to Codeberg

  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. 11
  12. 12
  13. 13
  14. 14
  15. 15
  16. 16
  17. 17
  18. 18
  19. 19
  20. 20
  21. 21
  22. 22
  23. 23
  24. 24
  25. 25
  26. 26
		{{if or (not .LinkAccountMode) (and .LinkAccountMode .LinkAccountModeSignIn)}}
		{{template "base/alert" .}}
		{{end}}
		<h4 class="ui top attached header center">
			{{.locale.Tr "settings.change_password"}}
		</h4>
		<div class="ui attached segment">
			<form class="ui form" action="{{.ChangePasscodeLink}}" method="post">
			{{.CsrfTokenHtml}}
			<div class="required inline field {{if and (.Err_Password) (or (not .LinkAccountMode) (and .LinkAccountMode .LinkAccountModeSignIn))}}error{{end}}">
				<label for="password">{{.locale.Tr "password"}}</label>
				<input id="password" name="password" type="password" value="{{.password}}" autocomplete="new-password" required>
			</div>


			<div class="required inline field {{if and (.Err_Password) (or (not .LinkAccountMode) (and .LinkAccountMode .LinkAccountModeRegister))}}error{{end}}">
				<label for="retype">{{.locale.Tr "re_type"}}</label>
				<input id="retype" name="retype" type="password" autocomplete="new-password" required>
			</div>

			<div class="inline field">
				<label></label>
				<button class="ui green button">{{.locale.Tr "settings.change_password"}}</button>
			</div>
			</form>
		</div>