add 2FA
This commit is contained in:
@@ -35,6 +35,26 @@
|
||||
<%= f.button button_title(title: 'Update', disabled_with: 'Updating'), class: 'base-button' %>
|
||||
</div>
|
||||
<% end %>
|
||||
<p class="text-2xl font-bold mt-8 mb-4">Two-Factor Authentication</p>
|
||||
<div class="space-y-4">
|
||||
<% if current_user.otp_required_for_login %>
|
||||
<p class="flex items-center space-x-1">
|
||||
<%= svg_icon('circle_check', class: 'stroke-success inline flex-none w-5 h-5') %>
|
||||
<span>
|
||||
2FA has been configured.
|
||||
</span>
|
||||
</p>
|
||||
<a href="<%= edit_mfa_setup_path %>" data-turbo-frame="modal" class="white-button w-full !px-8">🔓 Remove 2FA</a>
|
||||
<% else %>
|
||||
<p class="flex items-center space-x-1">
|
||||
<%= svg_icon('info_circle', class: 'stroke-warning inline flex-none w-5 h-5') %>
|
||||
<span>
|
||||
2FA is not configured.
|
||||
</span>
|
||||
</p>
|
||||
<a href="<%= new_mfa_setup_path %>" data-turbo-frame="modal" class="base-button w-full !px-8">🔒 Set up 2FA</a>
|
||||
<% end %>
|
||||
</div>
|
||||
</div>
|
||||
<div class="w-0 md:w-52"></div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user