forked from WHMCS/templates-six
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclientareasecurity.tpl
97 lines (72 loc) · 3.32 KB
/
clientareasecurity.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
92
93
94
95
96
97
{if $twofaavailable}
{if $twofaactivation}
<div id="twofaactivation">
{$twofaactivation}
</div>
{else}
<h2>{$LANG.twofactorauth}</h2>
{include file="$template/includes/alert.tpl" type="warning" msg="{lang key="clientAreaSecurityTwoFactorAuthRecommendation"}"}
<p>
{$LANG.twofaactivationintro}
</p>
<br />
<form method="post" action="clientarea.php?action=security">
<input type="hidden" name="2fasetup" value="1" />
<p align="center">
{if $twofastatus}
<input type="submit" value="{$LANG.twofadisableclickhere}" class="btn btn-danger" />
{else}
<input type="submit" value="{$LANG.twofaenableclickhere}" class="btn btn-success" />
{/if}
</p>
</form>
<br />
<br />
{/if}
{/if}
{if $securityquestionsenabled && !$twofaactivation}
<h2>{$LANG.clientareanavsecurityquestions}</h2>
{if $successful}
{include file="$template/includes/alert.tpl" type="success" msg=$LANG.changessavedsuccessfully textcenter=true}
{elseif $errormessage}
{include file="$template/includes/alert.tpl" type="error" errorshtml=$errormessage}
{elseif $nocurrent}
{include file="$template/includes/alert.tpl" type="info" msg="{lang key="clientAreaSecurityNoSecurityQuestions"}"}
{else}
{include file="$template/includes/alert.tpl" type="info" msg="{lang key="clientAreaSecuritySecurityQuestionOtherError"}"}
{/if}
<form role="form" method="post" action="{$smarty.server.PHP_SELF}?action=security">
{if !$nocurrent}
<div class="form-group">
<label for="inputCurrentAns" class="control-label">{$currentquestion}</label>
<input type="password" name="currentsecurityqans" id="inputCurrentAns" class="form-control" />
</div>
{/if}
<div class="form-group">
<label for="inputSecurityQid" class="control-label">{$LANG.clientareasecurityquestion}</label>
<select name="securityqid" id="inputSecurityQid" class="form-control">
{foreach key=num item=question from=$securityquestions}
<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="control-label">{$LANG.clientareasecurityanswer}</label>
<input type="password" name="securityqans" id="inputSecurityAns1" class="form-control" />
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label for="inputSecurityAns2" class="control-label">{$LANG.clientareasecurityconfanswer}</label>
<input type="password" name="securityqans2" id="inputSecurityAns2" class="form-control" />
</div>
</div>
</div>
<p class="text-center">
<input class="btn btn-primary" type="submit" name="submit" value="{$LANG.clientareasavechanges}" />
<input class="btn btn-default" type="reset" value="{$LANG.cancel}" />
</p>
</form>
{/if}