forked from TheMaxium69/SolidServ-WHMCS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
user-profile.tpl
82 lines (75 loc) · 3.32 KB
/
user-profile.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
{include file="$template/includes/flashmessage.tpl"}
<div class="card">
<div class="card-body">
<h3 class="card-title">{lang key='userProfile.profile'}</h3>
<form method="post" action="{routePath('user-profile-save')}">
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label for="inputFirstName" class="col-form-label">
{lang key='clientareafirstname'}
</label>
<input
type="text"
name="firstname"
id="inputFirstName"
value="{$user->firstName}"
class="form-control"
{if in_array('firstname', $uneditableFields)}disabled="disabled"{/if}
>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label for="inputLastName" class="col-form-label">
{lang key='clientarealastname'}
</label>
<input
type="text"
name="lastname"
id="inputLastName"
value="{$user->lastName}"
class="form-control"
{if in_array('lastname', $uneditableFields)}disabled="disabled"{/if}
>
</div>
</div>
</div>
<input class="btn btn-primary" type="submit" name="save" value="{lang key='clientareasavechanges'}" />
<input class="btn btn-default" type="reset" value="{lang key='cancel'}" />
</form>
</div>
</div>
<div class="card">
<div class="card-body">
<h3 class="card-title">{lang key='userProfile.changeEmail'}</h3>
<p>
{if $user->needsToCompleteEmailVerification()}
<span class="label label-default">{lang key='userProfile.notVerified'}</span>
{elseif $user->emailVerified()}
<span class="label label-success">{lang key='userProfile.verified'}</span>
{/if}
</p>
<form method="post" action="{routePath('user-profile-email-save')}">
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label for="inputEmail" class="col-form-label">
{lang key='clientareaemail'}
</label>
<input
type="email"
name="email"
id="inputEmail"
value="{$user->email}"
class="form-control"
{if in_array('email', $uneditableFields)}disabled="disabled"{/if}
>
</div>
</div>
</div>
<input class="btn btn-primary" type="submit" name="save" value="{lang key='clientareasavechanges'}" />
<input class="btn btn-default" type="reset" value="{lang key='cancel'}" />
</form>
</div>
</div>