-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_address_details.html
126 lines (117 loc) · 3.25 KB
/
_address_details.html
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
124
125
126
<form action="" method="post" id="ReChargeForm_address">
<div class="rc_input_container">
<p class="text-font-14">
<label for="first_name"> {{ 'First_Name' | t }} </label>
<input
class="margin-top-8"
type="text" name="first_name"
id="first_name" value=""
required
>
</p>
<p class="text-font-14">
<label for="first_name"> {{ 'Last_Name' | t }} </label>
<input
class="margin-top-8"
type="text"
name="last_name"
id="last_name"
value=""
required
>
</p>
</div>
<p class="text-font-14">
<label for="address1"> {{ 'Address' | t }} </label>
<input
class="margin-top-8"
type="text"
name="address1"
id="address1"
value=""
required
>
</p>
<p class="text-font-14"v>
<label for="address2"> {{ 'address_line' | t }} </label>
<input
class="margin-top-8"
type="text"
name="address2"
id="address2"
value=""
>
</p>
<p class="text-font-14">
<label for="company"> {{ 'Company' | t }} </label>
<input
class="margin-top-8"
type="text"
name="company"
id="company"
value=""
>
</p>
<p class="text-font-14">
<label for="country"> {{ 'Country' | t }} </label>
<select
class="margin-top-8"
name="country"
id="country"
data-value=""
onchange="ReCharge.Forms.updateProvinces(this); ReCharge.Novum.Utils.getZipLabel(this.value)"
required
></select>
</p>
<p class="text-font-14">
<label for="city"> {{ 'City' | t }} </label>
<input
class="margin-top-8"
type="text"
name="city"
id="city"
value=""
required
>
</p>
<p class="text-font-14">
<label for="province" class="js-statelabel"> {{ 'Province_State' | t }} </label>
<input
class="margin-top-8"
type="text"
name="province"
id="province"
value=""
>
<select
class="margin-top-8"
id="province_selector"
onchange="ReCharge.Forms.updateProvinceInput(this);"
style="display: none;"
></select>
</p>
<p class="text-font-14">
<label for="zip" class="js-zipcode"> {{ 'Postal_Code' | t }} </label>
<input
class="margin-top-8"
type="text"
name="zip"
id="zip"
value=""
required
>
</p>
<p class="text-font-14">
<label for="phone"> {{ 'Phone' | t }} </label>
<input
class="margin-top-8"
type="number"
name="phone"
id="phone"
value=""
>
</p>
<button class="rc_btn address-btn text-uppercase title-bold" type="submit">
{{ 'cp_update_shipping_address' | t }}
</button>
</form>