-
Notifications
You must be signed in to change notification settings - Fork 622
Expand file tree
/
Copy pathadd-payment-method.html
More file actions
124 lines (111 loc) · 7.98 KB
/
Copy pathadd-payment-method.html
File metadata and controls
124 lines (111 loc) · 7.98 KB
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
{{#partial "page"}}
{{inject 'creditCardNumber' (lang 'forms.validate.payment_method.credit_card_number')}}
{{inject 'expiration' (lang 'forms.validate.payment_method.expiration')}}
{{inject 'nameOnCard' (lang 'forms.validate.payment_method.name_on_card')}}
{{inject 'cvv' (lang 'forms.validate.payment_method.cvv')}}
{{inject 'firstNameLabel' (lang 'forms.payment_methods.first_name')}}
{{inject 'lastNameLabel' (lang 'forms.payment_methods.last_name')}}
{{inject 'companyLabel' (lang 'forms.payment_methods.company')}}
{{inject 'phoneLabel' (lang 'forms.payment_methods.phone')}}
{{inject 'address1Label' (lang 'forms.payment_methods.address1')}}
{{inject 'address2Label' (lang 'forms.payment_methods.address2')}}
{{inject 'cityLabel' (lang 'forms.payment_methods.city')}}
{{inject 'countryLabel' (lang 'forms.payment_methods.country')}}
{{inject 'stateLabel' (lang 'forms.payment_methods.state')}}
{{inject 'postalCodeLabel' (lang 'forms.payment_methods.postal_code')}}
{{inject 'chooseCountryLabel' (lang 'forms.payment_methods.choose_country')}}
{{inject 'paymentMethodsUrl' urls.account.payment_methods.all}}
{{inject 'paymentsUrl' settings.payments_url}}
{{inject 'storeHash' settings.store_hash}}
{{inject 'vaultToken' vault.access_token}}
{{inject 'shopperId' customer.id}}
{{inject 'countries' countries}}
{{inject 'customerEmail' customer.email}}
{{inject 'providerId' forms.provider}}
{{inject 'currencyCode' currency_selector.active_currency_code}}
{{inject 'paymentProviderInitializationData' initialization_data}}
{{inject 'storeLocale' settings.request.locale }}
{{inject 'themeSettings' theme_settings}}
{{> components/common/breadcrumbs breadcrumbs=breadcrumbs}}
<h2 class="page-heading">{{lang 'forms.payment_methods.add.heading'}}</h2>
{{> components/account/navigation account_page='payment_methods'}}
<div class="account account--fixed">
{{#if forms.error}}
{{> components/common/alert/alert-error forms.error}}
{{/if}}
{{#if account_payments}}
{{{ account_payments }}}
<script>
window.BigCommerce = window.BigCommerce || {};
</script>
{{else}}
<form data-payment-method-form class="form">
<input type="hidden" name="email" value="{{customer.email}}">
<input type="hidden" name="provider_id" value="{{forms.provider}}">
<input type="hidden" name="currency_code" value="{{currency_selector.active_currency_code}}">
<h3 class="paymentMethodForm-heading">{{lang 'account.payment_methods.payment_method'}}</h3>
<div class="paymentMethodForm">
<p class="paymentMethodForm-subheading">
{{forms.payment_method.provider_name}}
<span class="paymentMethodForm-cards">
{{#each ../theme_settings.supported_card_type_icons}}
<img class="paymentMethodForm-cards-icon" src="{{cdn (multiConcat 'img/payment-methods/' this '.svg')}}" alt="{{lang (concat 'account.payment_methods.card_types.' this)}}" title="{{lang (concat 'account.payment_methods.card_types.' this)}}">
{{/each}}
</span>
</p>
<fieldset class="form-fieldset">
<div class="paymentMethodForm-column">
<div class="paymentMethodForm-inputs">
{{> components/common/forms/text id="credit_card_number" name="credit_card_number" label=(lang 'account.payment_methods.credit_card_number')}}
<svg class="paymentMethodForm-inputs-icon icon">
<use href="#icon-lock" />
</svg>
</div>
<div class="paymentMethodForm-inputs">
{{> components/common/forms/text id="expiration" name="expiration" label=(lang 'account.payment_methods.expiration') placeholder="MM/YY"}}
</div>
</div>
<div class="paymentMethodForm-column">
<div class="paymentMethodForm-inputs">
{{> components/common/forms/text id="name_on_card" name="name_on_card" label=(lang 'account.payment_methods.name_on_card')}}
</div>
<div class="paymentMethodForm-inputs">
{{> components/common/forms/text id="cvv" name="cvv" label=(lang 'account.payment_methods.cvv')}}
<svg class="paymentMethodForm-inputs-icon icon">
<use href="#icon-lock" />
</svg>
</div>
</div>
<div class="form-field">
<input type="checkbox" name="default_instrument" id="default_instrument" data-label="{{lang 'forms.payment_methods.default_instrument'}}" class="form-checkbox">
<label class="form-label" for="default_instrument">{{lang 'forms.payment_methods.default_instrument'}}</label>
</div>
</fieldset>
</div>
<h3 class="paymentMethodForm-heading">{{lang 'account.payment_methods.billing_address'}}</h3>
<fieldset class="form-fieldset">
<div class="form-row form-row--half">
{{> components/common/forms/text private_id="FirstName" required=true id="first_name" name="first_name" label=(lang 'forms.payment_methods.first_name')}}
{{> components/common/forms/text private_id="LastName" required=true id="last_name" name="last_name" label=(lang 'forms.payment_methods.last_name')}}
{{> components/common/forms/text private_id="CompanyName" required=false id="company" name="company" label=(lang 'forms.payment_methods.company')}}
{{> components/common/forms/text private_id="Phone" required=false id="phone" name="phone" label=(lang 'forms.payment_methods.phone')}}
{{> components/common/forms/text private_id="AddressLine1" required=true id="address1" name="address1" label=(lang 'forms.payment_methods.address1')}}
{{> components/common/forms/text private_id="AddressLine2" required=false id="address2" name="address2" label=(lang 'forms.payment_methods.address2')}}
{{> components/common/forms/text private_id="City" required=true id="city" name="city" label=(lang 'forms.payment_methods.city')}}
{{> components/common/forms/select private_id="Country" required=true id="country" name="country" label=(lang 'forms.payment_methods.country') chooseprefix=(lang 'forms.payment_methods.choose_country') options=countries}}
{{> components/common/forms/text private_id="State" required=true id="state" name="state" label=(lang 'forms.payment_methods.state')}}
{{> components/common/forms/text private_id="Zip" required=true id="postal_code" name="postal_code" label=(lang 'forms.payment_methods.postal_code')}}
</div>
</fieldset>
<div class="form-actions">
<input type="submit" class="button button--primary" value="{{lang 'forms.payment_methods.submit_value'}}">
<a href="{{urls.account.payment_methods.all}}" class="button">{{lang 'common.cancel'}}</a>
{{inject 'required' (lang 'common.required')}}
{{inject 'state_error' (lang 'errors.state_error')}}
{{inject 'generic_error' (lang 'common.generic_error')}}
</div>
</form>
{{/if}}
</div>
{{/partial}}
{{> layout/base}}