2015-09-17 08:54:12 +03:00
{{ template "base/head" . }}
2023-02-02 01:56:10 +03:00
<div role="main" aria-label=" {{ .Title }} " class="page-content user activate">
2015-12-08 01:30:52 +03:00
<div class="ui middle very relaxed page grid">
<div class="column">
2024-03-06 17:20:26 +03:00
<form class="ui form ignore-dirty tw-max-w-2xl tw-m-auto" action=" {{ AppSubUrl }} /user/activate" method="post">
2015-12-08 01:30:52 +03:00
{{ .CsrfTokenHtml }}
<h2 class="ui top attached header">
2023-09-25 11:56:50 +03:00
{{ ctx .Locale .Tr "auth.active_your_account" }}
2015-12-08 01:30:52 +03:00
</h2>
<div class="ui attached segment">
{{ template "base/alert" . }}
2024-02-26 00:55:00 +03:00
{{ if .NeedVerifyLocalPassword }}
2024-03-06 17:20:26 +03:00
<div class="required field">
2024-02-26 00:55:00 +03:00
<label for="verify-password"> {{ ctx .Locale .Tr "password" }} </label>
<input id="verify-password" name="password" type="password" autocomplete="off" required>
</div>
<div class="inline field">
<button class="ui primary button"> {{ ctx .Locale .Tr "install.confirm_password" }} </button>
</div>
<input name="code" type="hidden" value=" {{ .ActivationCode }} ">
2015-12-08 01:30:52 +03:00
{{ else }}
2024-02-26 00:55:00 +03:00
<p> {{ ctx .Locale .Tr "auth.has_unconfirmed_mail" .SignedUser .Name .SignedUser .Email }} </p>
2024-02-27 13:55:13 +03:00
<details>
<summary> {{ ctx .Locale .Tr "auth.change_unconfirmed_mail_address" }} </summary>
<div class="tw-py-2">
<label for="change-email"> {{ ctx .Locale .Tr "email" }} </label>
<input id="change-email" name="change_email" type="email" value=" {{ .SignedUser .Email }} ">
</div>
</details>
2024-02-26 00:55:00 +03:00
<div class="divider"></div>
2024-03-06 17:20:26 +03:00
<div class="text">
2024-02-26 00:55:00 +03:00
<button class="ui primary button"> {{ ctx .Locale .Tr "auth.resend_mail" }} </button>
</div>
2015-12-08 01:30:52 +03:00
{{ end }}
</div>
</form>
</div>
</div>
2014-03-19 17:24:02 +04:00
</div>
2015-09-17 08:54:12 +03:00
{{ template "base/footer" . }}