2018-05-15 15:37:32 +05:30
|
|
|
<h4 class="ui top attached header">
|
2022-06-28 02:28:46 +05:30
|
|
|
{{.locale.Tr "settings.twofa"}}
|
2018-05-15 15:37:32 +05:30
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
2022-06-28 02:28:46 +05:30
|
|
|
<p>{{.locale.Tr "settings.twofa_desc"}}</p>
|
2021-11-09 04:17:19 +05:30
|
|
|
{{if .TOTPEnrolled}}
|
2022-06-28 02:28:46 +05:30
|
|
|
<p>{{$.locale.Tr "settings.twofa_is_enrolled" | Str2html }}</p>
|
2018-05-19 06:32:04 +05:30
|
|
|
<form class="ui form" action="{{AppSubUrl}}/user/settings/security/two_factor/regenerate_scratch" method="post" enctype="multipart/form-data">
|
2018-05-15 15:37:32 +05:30
|
|
|
{{.CsrfTokenHtml}}
|
2022-06-28 02:28:46 +05:30
|
|
|
<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 15:37:32 +05:30
|
|
|
</form>
|
2018-05-19 06:32:04 +05:30
|
|
|
<form class="ui form" action="{{AppSubUrl}}/user/settings/security/two_factor/disable" method="post" enctype="multipart/form-data" id="disable-form">
|
2018-05-15 15:37:32 +05:30
|
|
|
{{.CsrfTokenHtml}}
|
2022-06-28 02:28:46 +05:30
|
|
|
<p>{{.locale.Tr "settings.twofa_disable_note"}}</p>
|
|
|
|
<div class="ui red button delete-button" data-modal-id="disable-twofa" data-type="form" data-form="#disable-form">{{$.locale.Tr "settings.twofa_disable"}}</div>
|
2018-05-15 15:37:32 +05:30
|
|
|
</form>
|
|
|
|
{{else}}
|
2022-06-28 02:28:46 +05:30
|
|
|
<p>{{.locale.Tr "settings.twofa_not_enrolled"}}</p>
|
2018-05-15 15:37:32 +05:30
|
|
|
<div class="inline field">
|
2022-06-28 02:28:46 +05:30
|
|
|
<a class="ui green button" href="{{AppSubUrl}}/user/settings/security/two_factor/enroll">{{$.locale.Tr "settings.twofa_enroll"}}</a>
|
2018-05-15 15:37:32 +05:30
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="ui small basic delete modal" id="disable-twofa">
|
|
|
|
<div class="ui icon header">
|
2021-03-22 09:34:19 +05:30
|
|
|
{{svg "octicon-trash"}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{.locale.Tr "settings.twofa_disable"}}
|
2018-05-15 15:37:32 +05:30
|
|
|
</div>
|
|
|
|
<div class="content">
|
2022-06-28 02:28:46 +05:30
|
|
|
<p>{{.locale.Tr "settings.twofa_disable_desc"}}</p>
|
2018-05-15 15:37:32 +05:30
|
|
|
</div>
|
|
|
|
{{template "base/delete_modal_actions" .}}
|
|
|
|
</div>
|