* Fix broken security key 2FA on mobile login.hbs * Show nicer error message when a security key already exists * [COPY] Disable -> Delete for security key editing * Standardize UI elements in 2FA prefs password confirmation * Minor fixes to label location for resetPasswordProgress
16 lines
483 B
Handlebars
16 lines
483 B
Handlebars
{{#d-modal-body}}
|
|
<div class="form-horizontal">
|
|
{{input type="text" value=model.name}}
|
|
</div>
|
|
<div class='second-factor instructions'>
|
|
{{i18n 'user.second_factor.security_key.edit_description'}}
|
|
</div>
|
|
{{d-button action=(action "editSecurityKey")
|
|
class="btn-primary"
|
|
label="user.second_factor.security_key.edit"}}
|
|
|
|
{{d-button action=(action "disableSecurityKey")
|
|
class="btn-danger"
|
|
label="user.second_factor.security_key.delete"}}
|
|
{{/d-modal-body}}
|