2018-05-15 10:07:32 +00:00
|
|
|
<h4 class="ui top attached header">
|
2022-06-27 20:58:46 +00:00
|
|
|
{{.locale.Tr "settings.twofa"}}
|
2018-05-15 10:07:32 +00:00
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
2022-06-27 20:58:46 +00:00
|
|
|
<p>{{.locale.Tr "settings.twofa_desc"}}</p>
|
2021-11-08 22:47:19 +00:00
|
|
|
{{if .TOTPEnrolled}}
|
2022-08-31 15:58:54 +00:00
|
|
|
<p>{{$.locale.Tr "settings.twofa_is_enrolled" | Str2html}}</p>
|
2018-05-19 01:02:04 +00:00
|
|
|
<form class="ui form" action="{{AppSubUrl}}/user/settings/security/two_factor/regenerate_scratch" method="post" enctype="multipart/form-data">
|
2018-05-15 10:07:32 +00:00
|
|
|
{{.CsrfTokenHtml}}
|
2022-06-27 20:58:46 +00:00
|
|
|
<p>{{.locale.Tr "settings.regenerate_scratch_token_desc"}}</p>
|
|
|
|
<button class="ui primary button">{{$.locale.Tr "settings.twofa_scratch_token_regenerate"}}</button>
|
2018-05-15 10:07:32 +00:00
|
|
|
</form>
|
2018-05-19 01:02:04 +00:00
|
|
|
<form class="ui form" action="{{AppSubUrl}}/user/settings/security/two_factor/disable" method="post" enctype="multipart/form-data" id="disable-form">
|
2018-05-15 10:07:32 +00:00
|
|
|
{{.CsrfTokenHtml}}
|
2022-06-27 20:58:46 +00:00
|
|
|
<p>{{.locale.Tr "settings.twofa_disable_note"}}</p>
|
2023-03-14 03:34:09 +00:00
|
|
|
<button class="ui red button delete-button" data-modal-id="disable-twofa" data-type="form" data-form="#disable-form">{{$.locale.Tr "settings.twofa_disable"}}</button>
|
2018-05-15 10:07:32 +00:00
|
|
|
</form>
|
|
|
|
{{else}}
|
2022-06-27 20:58:46 +00:00
|
|
|
<p>{{.locale.Tr "settings.twofa_not_enrolled"}}</p>
|
2018-05-15 10:07:32 +00:00
|
|
|
<div class="inline field">
|
2022-06-27 20:58:46 +00:00
|
|
|
<a class="ui green button" href="{{AppSubUrl}}/user/settings/security/two_factor/enroll">{{$.locale.Tr "settings.twofa_enroll"}}</a>
|
2018-05-15 10:07:32 +00:00
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
|
2023-04-24 11:08:59 +00:00
|
|
|
<div class="ui g-modal-confirm delete modal" id="disable-twofa">
|
2023-04-23 09:24:19 +00:00
|
|
|
<div class="header">
|
2021-03-22 04:04:19 +00:00
|
|
|
{{svg "octicon-trash"}}
|
2022-06-27 20:58:46 +00:00
|
|
|
{{.locale.Tr "settings.twofa_disable"}}
|
2018-05-15 10:07:32 +00:00
|
|
|
</div>
|
|
|
|
<div class="content">
|
2022-06-27 20:58:46 +00:00
|
|
|
<p>{{.locale.Tr "settings.twofa_disable_desc"}}</p>
|
2018-05-15 10:07:32 +00:00
|
|
|
</div>
|
2023-04-23 09:24:19 +00:00
|
|
|
{{template "base/modal_actions_confirm" .}}
|
2018-05-15 10:07:32 +00:00
|
|
|
</div>
|