forked from TheMaxium69/SolidServ-WHMCS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
user-security.tpl
91 lines (76 loc) · 4.37 KB
/
user-security.tpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{include file="$template/includes/flashmessage.tpl"}
<p>{lang key='userManagement.settings'}</p>
{if $linkableProviders}
<div class="card">
<div class="card-body">
<h3 class="card-title">{lang key='remoteAuthn.titleLinkedAccounts'}</h3>
{include file="$template/includes/linkedaccounts.tpl" linkContext="clientsecurity" }
<br />
{include file="$template/includes/linkedaccounts.tpl" linkContext="linktable" }
<br />
</div>
</div>
{/if}
{if $securityQuestions->count() > 0}
<div class="card">
<div class="card-body">
<h3 class="card-title">{lang key='clientareanavsecurityquestions'}</h3>
<form method="post" action="{routePath('user-security-question')}">
{if $user->hasSecurityQuestion()}
<div class="form-group">
<label for="inputCurrentAns" class="col-form-label">{$user->getSecurityQuestion()}</label>
<input type="password" name="currentsecurityqans" id="inputCurrentAns" class="form-control" autocomplete="off" />
</div>
{/if}
<div class="form-group">
<label for="inputSecurityQid" class="col-form-label">{lang key='clientareasecurityquestion'}</label>
<select name="securityqid" id="inputSecurityQid" class="form-control custom-select">
{foreach $securityQuestions as $question}
<option value="{$question->id}">
{$question->question}
</option>
{/foreach}
</select>
</div>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label for="inputSecurityAns1" class="col-form-label">{lang key='clientareasecurityanswer'}</label>
<input type="password" name="securityqans" id="inputSecurityAns1" class="form-control" autocomplete="off" />
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label for="inputSecurityAns2" class="col-form-label">{lang key='clientareasecurityconfanswer'}</label>
<input type="password" name="securityqans2" id="inputSecurityAns2" class="form-control" autocomplete="off" />
</div>
</div>
</div>
<p>
<input class="btn btn-primary" type="submit" name="submit" value="{lang key='clientareasavechanges'}" />
<input class="btn btn-default" type="reset" value="{lang key='cancel'}" />
</p>
</form>
</div>
</div>
{/if}
{if $twoFactorAuthAvailable}
<div class="card">
<div class="card-body">
<h3 class="card-title">{lang key='twofactorauth'}</h3>
<p class="twofa-config-link disable{if !$twoFactorAuthEnabled} w-hidden{/if}">
{lang key='twofacurrently'} <strong>{lang key='enabled'|strtolower}</strong>
</p>
<p class="twofa-config-link enable{if $twoFactorAuthEnabled} w-hidden{/if}">
{lang key='twofacurrently'} <strong>{lang key='disabled'|strtolower}</strong>
</p>
{include file="$template/includes/alert.tpl" type="warning" msg="{lang key="clientAreaSecurityTwoFactorAuthRecommendation"}"}
<a href="{routePath('account-security-two-factor-disable')}" class="btn btn-danger open-modal twofa-config-link disable{if !$twoFactorAuthEnabled} w-hidden{/if}" data-modal-title="{lang key='twofadisable'}" data-modal-class="twofa-setup" data-btn-submit-label="{lang key='twofadisable'}" data-btn-submit-color="danger" data-btn-submit-id="btnDisable2FA">
{lang key='twofadisableclickhere'}
</a>
<a href="{routePath('account-security-two-factor-enable')}" class="btn btn-success open-modal twofa-config-link enable{if $twoFactorAuthEnabled} w-hidden{/if}" data-modal-title="{lang key='twofaenable'}" data-modal-class="twofa-setup" data-btn-submit-id="btnEnable2FA">
{lang key='twofaenableclickhere'}
</a>
</div>
</div>
{/if}