-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
70 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# -*- coding: utf-8 -*- | ||
from __future__ import unicode_literals | ||
|
||
__version__ = '1.0.0' | ||
__version__ = '1.0.1' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
116 changes: 61 additions & 55 deletions
116
gateway_selector/templates/includes/integrations/gateway_selector/billing_address.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,64 +1,70 @@ | ||
<form id="gateway-selector-billing-form" class="awc-form"> | ||
<div class="row no-gutter"> | ||
<div class="col-sm-12"> | ||
<div class="col-sm-6"> | ||
<div class="field required"> | ||
<label for="billing_title">Address Label</label> | ||
<input id="billing_title" name="title" placeholder="Address Label" data-type="title" maxlength="35" /> | ||
</div> | ||
</div> | ||
<div class="col-sm-6"> | ||
<div class="field required"> | ||
<label for="billing_phone">Phone</label> | ||
<input id="billing_phone" name="phone" placeholder="Contact Number" data-type="phone" maxlength="35" /> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="row no-gutter"> | ||
<div class="col-sm-12"> | ||
<div class="field required"> | ||
<label for="billing_line1">Address</label> | ||
<input id="billing_line1" name="address_1" placeholder="Address 1" data-type="address_1" maxlength="35"/> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="row no-gutter"> | ||
<div class="col-sm-12"> | ||
<div class="field"> | ||
<label for="billing_line2">Address 2</label> | ||
<input id="billing_line2" name="address_2" placeholder="Address 2" data-type="address_2" maxlength="35"/> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="row no-gutter"> | ||
<div class="col-xs-6 nopad-right"> | ||
<div class="field required"> | ||
<label for="billing_city">City</label> | ||
<input id="billing_city" name="city" placeholder="City" data-type="city" maxlength="35"/> | ||
</div> | ||
</div> | ||
<div class="col-xs-3 nopad-right"> | ||
<div class="field"> | ||
<label for="billing_state">State</label> | ||
<input id="billing_state" name="state" placeholder="State" data-type="state" maxlength="35"/> | ||
</div> | ||
</div> | ||
<div class="col-xs-3 nopad-left"> | ||
<div class="field required"> | ||
<label for="billing_pincode">Postal Code</label> | ||
<input id="billing_pincode" name="pincode" placeholder="Postal Code" data-type="pincode" maxlength="35"/> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="row no-gutter"> | ||
<div class="col-sm-12"> | ||
<div class="field required"> | ||
<label for="billing_country">Country</label> | ||
<select id="billing_country" name="country" data-type="country"> | ||
<option selected>- Select Country -</option> | ||
{% for country in billing_countries %} | ||
<option value="{{country.name}}">{{country.country_name}}</option> | ||
{% endfor %} | ||
</select> | ||
<span class="select-arrow glyphicon glyphicon-triangle-bottom"></span> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="row no-gutter"> | ||
<div class="col-sm-12"> | ||
<div class="field required"> | ||
<label for="billing_line1">Address</label> | ||
<input id="billing_line1" name="address_1" placeholder="Address 1" data-type="address_1" maxlength="35" /> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="row no-gutter"> | ||
<div class="col-sm-12"> | ||
<div class="field"> | ||
<label for="billing_line2">Address 2</label> | ||
<input id="billing_line2" name="address_2" placeholder="Address 2" data-type="address_2" maxlength="35" /> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="row no-gutter"> | ||
<div class="col-xs-6 nopad-right"> | ||
<div class="field required"> | ||
<label for="billing_city">City</label> | ||
<input id="billing_city" name="city" placeholder="City" data-type="city" maxlength="35" /> | ||
</div> | ||
</div> | ||
<div class="col-xs-3 nopad-right"> | ||
<div class="field"> | ||
<label for="billing_state">State</label> | ||
<input id="billing_state" name="state" placeholder="State" data-type="state" maxlength="35" /> | ||
</div> | ||
</div> | ||
<div class="col-xs-3 nopad-left"> | ||
<div class="field required"> | ||
<label for="billing_pincode">Postal Code</label> | ||
<input id="billing_pincode" name="pincode" placeholder="Postal Code" data-type="pincode" maxlength="35" /> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="row no-gutter"> | ||
<div class="col-sm-12"> | ||
<div class="field required"> | ||
<label for="billing_country">Country</label> | ||
<select id="billing_country" name="country" data-type="country"> | ||
<option selected>- Select Country -</option> | ||
{% for country in billing_countries %} | ||
<option value="{{country.name}}">{{country.country_name}}</option> | ||
{% endfor %} | ||
</select> | ||
<span class="select-arrow glyphicon glyphicon-triangle-bottom"></span> | ||
</div> | ||
</div> | ||
</div> | ||
</form> | ||
<div style="text-align: center;"> | ||
<button style="display: inline; margin-right: 10px;" class="btn btn-default btn-primary btn-back">Back</button> | ||
<button style="display: inline;" class="btn btn-default btn-primary btn-nextbtn">Next</button> | ||
</div> | ||
<div style="text-align: center;"> | ||
<button style="display: inline; margin-right: 10px;" class="btn btn-default btn-primary btn-back">Back</button> | ||
<button style="display: inline;" class="btn btn-default btn-primary btn-nextbtn">Next</button> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters