##// END OF EJS Templates
feat(archive-cache): added option to define a configurable top-level bucket for all shards
feat(archive-cache): added option to define a configurable top-level bucket for all shards

File last commit:

r5368:4bc46af9 default
r5445:fdcdfe77 default
Show More
my_account_2fa.mako
134 lines | 5.3 KiB | application/x-mako | MakoHtmlLexer
feat(2fa): Added 2fa option. Fixes: RCCE-65
r5360 <%namespace name="base" file="/base/base.mako"/>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">${_('Enable/Disable 2FA for your account')}</h3>
</div>
feat(2fa): updates routes names and urls to better reflect actions
r5368 ${h.secure_form(h.route_path('my_account_configure_2fa_update'), request=request)}
feat(2fa): Added 2fa option. Fixes: RCCE-65
r5360 <div class="panel-body">
<div class="form">
<div class="fields">
<div class="field">
<div class="label">
<label>${_('2FA status')}:</label>
</div>
<div class="checkboxes">
% if c.locked_2fa:
<span class="help-block">${_('2FA settings cannot be changed here, because 2FA was forced enabled by RhodeCode Administrator.')}</span>
feat(2fa): refactor logic arround validation/recoverycodes and workflows of configuration of 2fa...
r5367
% else:
<div class="form-check">
<input type="radio" id="2faEnabled" name="2fa_status" value="1" ${'checked=1' if c.state_of_2fa else ''}/>
<label for="2faEnabled">${_('Enable 2FA')}</label>
<input type="radio" id="2faDisabled" name="2fa_status" value="0" ${'checked=1' if not c.state_of_2fa else ''} />
<label for="2faDisabled">${_('Disable 2FA')}</label>
</div>
feat(2fa): Added 2fa option. Fixes: RCCE-65
r5360 % endif
feat(2fa): refactor logic arround validation/recoverycodes and workflows of configuration of 2fa...
r5367
feat(2fa): Added 2fa option. Fixes: RCCE-65
r5360 </div>
</div>
</div>
<button id="saveBtn" class="btn btn-primary" ${'disabled' if c.locked_2fa else ''}>${_('Save')}</button>
</div>
</div>
feat(2fa): refactor logic arround validation/recoverycodes and workflows of configuration of 2fa...
r5367 ${h.end_form()}
feat(2fa): Added 2fa option. Fixes: RCCE-65
r5360 </div>
2fa: recovery codes copy
r5361
feat(2fa): Added 2fa option. Fixes: RCCE-65
r5360 % if c.state_of_2fa:
feat(2fa): refactor logic arround validation/recoverycodes and workflows of configuration of 2fa...
r5367
% if not c.user_seen_2fa_recovery_codes:
<div class="panel panel-warning">
<div class="panel-heading" id="advanced-archive">
<h3 class="panel-title">${_('2FA Recovery codes')} <a class="permalink" href="#advanced-archive"> ¶</a></h3>
</div>
<div class="panel-body">
<p>
${_('You have not seen your 2FA recovery codes yet.')}
${_('Please save them in a safe place, or you will lose access to your account in case of lost access to authenticator app.')}
</p>
<br/>
feat(2fa): updates routes names and urls to better reflect actions
r5368 <a href="${request.route_path('my_account_configure_2fa', _query={'show-recovery-codes': 1})}" class="btn btn-primary">${_('Show recovery codes')}</a>
feat(2fa): refactor logic arround validation/recoverycodes and workflows of configuration of 2fa...
r5367 </div>
</div>
% endif
${h.secure_form(h.route_path('my_account_regenerate_2fa_recovery_codes'), request=request)}
feat(2fa): Added 2fa option. Fixes: RCCE-65
r5360 <div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">${_('Regenerate 2FA recovery codes for your account')}</h3>
</div>
<div class="panel-body">
<form id="2faForm">
feat(2fa): refactor logic arround validation/recoverycodes and workflows of configuration of 2fa...
r5367 <input type="text" name="totp" placeholder="${_('Verify the code from the app')}" pattern="\d{6}" style="width: 20%">
<button type="submit" class="btn btn-primary">${_('Verify and generate new codes')}</button>
feat(2fa): Added 2fa option. Fixes: RCCE-65
r5360 </form>
</div>
</div>
feat(2fa): refactor logic arround validation/recoverycodes and workflows of configuration of 2fa...
r5367 ${h.end_form()}
% endif
2fa: recovery codes copy
r5361
feat(2fa): Added 2fa option. Fixes: RCCE-65
r5360 <script>
2fa: recovery codes copy
r5361
feat(2fa): refactor logic arround validation/recoverycodes and workflows of configuration of 2fa...
r5367 function showRecoveryCodesPopup() {
2fa: recovery codes copy
r5361
SwalNoAnimation.fire({
feat(2fa): refactor logic arround validation/recoverycodes and workflows of configuration of 2fa...
r5367 title: _gettext('2FA recovery codes'),
html: '<span>Should you ever lose your phone or access to your one time password secret, each of these recovery codes can be used one time each to regain access to your account. Please save them in a safe place, or you will lose access to your account.</span>',
showCancelButton: false,
showConfirmButton: true,
showLoaderOnConfirm: true,
confirmButtonText: _gettext('Show now'),
allowOutsideClick: function () {
!Swal.isLoading()
},
preConfirm: function () {
var postData = {
'csrf_token': CSRF_TOKEN
};
return new Promise(function (resolve, reject) {
$.ajax({
type: 'POST',
data: postData,
url: pyroutes.url('my_account_show_2fa_recovery_codes'),
headers: {'X-PARTIAL-XHR': true}
})
.done(function (data) {
resolve(data);
})
.fail(function (jqXHR, textStatus, errorThrown) {
var message = formatErrorMessage(jqXHR, textStatus, errorThrown);
ajaxErrorSwal(message);
});
})
}
2fa: recovery codes copy
r5361 })
feat(2fa): refactor logic arround validation/recoverycodes and workflows of configuration of 2fa...
r5367 .then(function (result) {
if (result.value) {
let funcData = {'recoveryCodes': result.value.recovery_codes}
let recoveryCodesHtml = renderTemplate('recoveryCodes', funcData);
SwalNoAnimation.fire({
allowOutsideClick: false,
confirmButtonText: _gettext('I Copied the codes'),
title: _gettext('2FA Recovery Codes'),
html: recoveryCodesHtml
}).then(function (result) {
if (result.isConfirmed) {
window.location.reload()
}
})
}
})
feat(2fa): Added 2fa option. Fixes: RCCE-65
r5360 }
feat(2fa): refactor logic arround validation/recoverycodes and workflows of configuration of 2fa...
r5367 % if request.GET.get('show-recovery-codes') == '1' and not c.user_seen_2fa_recovery_codes:
showRecoveryCodesPopup();
% endif
feat(2fa): Added 2fa option. Fixes: RCCE-65
r5360 </script>