mirror of
https://github.com/fleetbase/fleetbase.git
synced 2026-01-04 13:27:12 +00:00
31 lines
1.8 KiB
Handlebars
31 lines
1.8 KiB
Handlebars
<div class="flex items-center space-x-4">
|
|
<label class="text-base font-medium">Enable Two-Factor Authentication</label>
|
|
<Toggle @isToggled={{this.isTwoFaEnabled}} @onToggle={{this.onTwoFaToggled}} />
|
|
</div>
|
|
|
|
{{#if this.isTwoFaEnabled}}
|
|
<div class="mt-6">
|
|
{{#if this.showEnforceOption}}
|
|
<div class="flex items-center space-x-4 mb-6">
|
|
<label class="text-base font-medium">Require Users to Set-Up 2FA</label>
|
|
<Toggle @isToggled={{this.isTwoFaEnforced}} @onToggle={{this.onTwoFaEnforcedToggled}} />
|
|
</div>
|
|
{{/if}}
|
|
{{#if this.showMethodSelection}}
|
|
<label class="text-base font-medium">Choose an authentication method</label>
|
|
<p class="text-sm text-gray-600 dark:text-gray-300 mt-1">In addition to your username and password, you'll have to enter a code (delivered via app or SMS) to sign in to your account</p>
|
|
{{#each @twoFaMethods as |method|}}
|
|
<div class="border rounded-lg px-4 py-3 mt-2 transition duration-300 {{if (eq this.selectedTwoFaMethod method.key) 'border-blue-500' 'border-gray-200 dark:border-gray-700'}}">
|
|
<input type="radio" name="2fa-method" id="{{method.name}}" checked={{eq this.selectedTwoFaMethod method.key}} {{on "change" (fn this.onTwoFaSelected method.key)}} />
|
|
<label for="{{method.name}}">
|
|
{{method.name}}
|
|
{{#if method.recommended}}
|
|
<span class="bg-blue-500 rounded-xl text-white px-2 py-1 ml-2 text-xs font-semibold">Recommended</span>
|
|
{{/if}}
|
|
<p class="text-sm text-gray-600 dark:text-gray-300 mt-1">{{method.description}}</p>
|
|
</label>
|
|
</div>
|
|
{{/each}}
|
|
{{/if}}
|
|
</div>
|
|
{{/if}} |