-
Notifications
You must be signed in to change notification settings - Fork 280
/
account-contacts-new.tpl
123 lines (102 loc) · 5.5 KB
/
account-contacts-new.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{if $errorMessageHtml}
{include file="$template/includes/alert.tpl" type="error" errorshtml=$errorMessageHtml}
{/if}
<script>
var stateNotRequired = true;
jQuery(document).ready(function() {
WHMCS.form.register();
});
</script>
<script src="{$BASE_PATH_JS}/StatesDropdown.js"></script>
<div class="alert alert-block alert-info">
<form class="form-horizontal" role="form" method="post" action="{routePath('account-contacts')}">
<div class="row">
<label for="inputContactId" class="col-sm-3 control-label">{$LANG.clientareachoosecontact}</label>
<div class="col-sm-6">
<select name="contactid" id="inputContactId" onchange="submit()" class="form-control">
{foreach $contacts as $contact}
<option value="{$contact.id}">{$contact.name} - {$contact.email}</option>
{/foreach}
<option value="new" selected="selected">{$LANG.clientareanavaddcontact}</option>
</select>
</div>
<div class="col-sm-2 hidden-xs">
<button type="submit" class="btn btn-default btn-block">{$LANG.go}</button>
</div>
</div>
</form>
</div>
<form role="form" method="post" action="{routePath('account-contacts-new')}">
<div class="row">
<div class="col-sm-6">
<div class="form-group">
<label for="inputFirstName" class="control-label">{$LANG.clientareafirstname}</label>
<input type="text" name="firstname" id="inputFirstName" value="{$formdata.firstname}" class="form-control" />
</div>
<div class="form-group">
<label for="inputLastName" class="control-label">{$LANG.clientarealastname}</label>
<input type="text" name="lastname" id="inputLastName" value="{$formdata.lastname}" class="form-control" />
</div>
<div class="form-group">
<label for="inputCompanyName" class="control-label">{$LANG.clientareacompanyname}</label>
<input type="text" name="companyname" id="inputCompanyName" value="{$formdata.companyname}" class="form-control" />
</div>
<div class="form-group">
<label for="inputEmail" class="control-label">{$LANG.clientareaemail}</label>
<input type="email" name="email" id="inputEmail" value="{$formdata.email}" class="form-control" />
</div>
<div class="form-group">
<label for="inputPhone" class="control-label">{$LANG.clientareaphonenumber}</label>
<input type="tel" name="phonenumber" id="inputPhone" value="{$formdata.phonenumber}" class="form-control" />
</div>
{if $showTaxIdField}
<div class="form-group">
<label for="inputTaxId" class="control-label">{lang key=$taxIdLabel}</label>
<input type="text" name="tax_id" id="inputTaxId" class="form-control" value="{$formdata.tax_id}" />
</div>
{/if}
</div>
<div class="col-sm-6 col-xs-12 pull-right">
<div class="form-group">
<label for="inputAddress1" class="control-label">{$LANG.clientareaaddress1}</label>
<input type="text" name="address1" id="inputAddress1" value="{$formdata.address1}" class="form-control" />
</div>
<div class="form-group">
<label for="inputAddress2" class="control-label">{$LANG.clientareaaddress2}</label>
<input type="text" name="address2" id="inputAddress2" value="{$formdata.address2}" class="form-control" />
</div>
<div class="form-group">
<label for="inputCity" class="control-label">{$LANG.clientareacity}</label>
<input type="text" name="city" id="inputCity" value="{$formdata.city}" class="form-control" />
</div>
<div class="form-group">
<label for="inputState" class="control-label">{$LANG.clientareastate}</label>
<input type="text" name="state" id="inputState" value="{$formdata.state}" class="form-control" />
</div>
<div class="form-group">
<label for="inputPostcode" class="control-label">{$LANG.clientareapostcode}</label>
<input type="text" name="postcode" id="inputPostcode" value="{$formdata.postcode}" class="form-control" />
</div>
<div class="form-group">
<label class="control-label" for="country">{$LANG.clientareacountry}</label>
{$countriesdropdown}
</div>
</div>
</div>
<div class="form-group">
<h3>{$LANG.clientareacontactsemails}</h3>
<div class="controls checkbox">
{foreach $formdata.emailPreferences as $emailType => $value}
<label>
<input type="hidden" name="email_preferences[{$emailType}]" value="0">
<input type="checkbox" name="email_preferences[{$emailType}]" id="{$emailType}emails" value="1"{if $value} checked="checked"{/if} />
{lang key="clientareacontactsemails"|cat:$emailType}
</label>{if !($emailType@last)}<br />{/if}
{/foreach}
</div>
</div>
<div class="form-group text-center">
<input class="btn btn-primary" type="submit" name="save" value="{$LANG.clientareasavechanges}" />
<input class="btn btn-default" type="reset" value="{$LANG.cancel}" />
</div>
</form>