3
0

Adjust icons margin

This commit is contained in:
Mia Arh
2021-03-08 19:45:10 +01:00
parent 76c57ac82b
commit e4de4b1c8a
3 changed files with 8 additions and 8 deletions
+3 -3
View File
@@ -11,7 +11,7 @@
<h5>Check your inbox and enter the received code</h5>
{{ if .form.emailOtpError }}
<div class="text-danger my-4 font-weiUpdate MFAght-bold" role="alert">
<div class="text-danger my-4 font-weight-bold" role="alert">
{{ .form.emailOtpError }}
</div>
{{ end }}
@@ -53,7 +53,7 @@
</form>
{{ else if not .emailOtpDisabled }}
<p class="p-3 mb-0">
<i class="bi bi-check-circle text-success h5"></i> Email OTP confirmed
<i class="bi bi-check-circle text-success h5 mr-1"></i> Email OTP confirmed
</p>
{{ end }}
@@ -99,7 +99,7 @@
</form>
{{ else if not .totpDisabled }}
<p class="p-3 mb-0">
<i class="bi bi-check-circle text-success h5"></i> TOTP confirmed
<i class="bi bi-check-circle text-success h5 mr-1"></i> TOTP confirmed
</p>
{{ end }}
</div>
+1 -1
View File
@@ -70,7 +70,7 @@ security:
EmailOTP: { Enabled: true }
mfa:
Defautl: {}
Default: {}
MFA pending:
emailOtpPending: true
totpDisabled: true
+4 -4
View File
@@ -24,9 +24,9 @@
<div class="row">
<div class="col-10 pt-2">
{{ if .totpEnforced }}
<i class="bi bi-check-circle text-success h5"></i>
<i class="bi bi-check-circle text-success h5 mr-1"></i>
{{ else }}
<i class="bi bi-exclamation-circle-fill text-danger h5"></i>
<i class="bi bi-exclamation-circle-fill text-danger h5 mr-1"></i>
{{ end }}
{{ if .totpEnforced }}
Configured and required on login.
@@ -53,9 +53,9 @@
<div class="row">
<div class="col-10 pt-2">
{{ if .emailOtpEnforced }}
<i class="bi bi-check-circle text-success h4"></i>
<i class="bi bi-check-circle text-success h5 mr-1"></i>
{{ else }}
<i class="bi bi-exclamation-circle-fill text-danger h5"></i>
<i class="bi bi-exclamation-circle-fill text-danger h5 mr-1"></i>
{{ end }}
{{ if .emailOtpEnforced }}
Enabled and required on login.