-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbilling.html
130 lines (108 loc) · 5 KB
/
billing.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
127
128
129
130
<!doctype html>
<html lang="en"> <!-- Set this to the main language of your site -->
<head>
<meta charset="utf-8">
<title>Address Book - My Account</title>
<meta name="description" content="Manage Address Book">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/normalize.css" rel="stylesheet" media="all">
<!-- For legacy support (IE 6/7, Firefox < 4, and Safari < 5) use normalize-legacy.css instead -->
<!--<link href="css/normalize-legacy.css" rel="stylesheet" media="all">-->
<link href="css/styles.css" rel="stylesheet" media="all">
<!--[if lt IE 9]>
<script type='text/javascript' src="js/html5shiv-printshiv.js" media="all"></script><![endif]-->
<script type="text/javascript" src="js/modernizr-2.6.2.js"></script>
<script type="text/javascript" src="js/jquery-1.10.1.min.js"></script>
<script type="text/javascript" src="js/moment.js"></script>
<script type="text/javascript" src="js/handlebars_1.0.js"></script>
<script type="text/javascript" src="js/underscore_1.4.4.js"></script>
<script type="text/javascript" src="js/backbone_1.0.js"></script>
<script type="text/javascript" src="js/myaccount_rest_1.4.js"></script>
<script type="text/javascript" src="js/myaccount.js"></script>
<script type="text/javascript" src="billing.js"></script>
<script type="text/template" id="addresses-template">
{{#if loading}}
Please wait. We're loading your addresses now.<br>
<img src='images/jquery.smallhbar.indicator.gif'/>
{{else}}
<section>
<header class='order-header'>
<nav role="navigation">
<input type="button" class="addButton" value="Add New Address"/>
</nav>
</header>
<div id="addresses">
<!-- individual orders will render here. -->
</div>
<div style='clear:both'></div>
<footer class='order-footer'>
<nav role="navigation">
<input type="button" class="addButton" value="Add New Address"/>
</nav>
</footer>
</section>
{{/if}}
</script>
<script type="text/template" id="address-template">
<!-- the backbone view will wrap this content in an <article class="address"></article> tag -->
<div class='address'>
<table class='address-table'>
<tr>
<td class='address-position'>{{position}}.</td>
<td>
<div class='address-fields'>
<strong>{{firstName}} {{lastName}}</strong><br>
{{#if title}}{{title}}<br>{{/if}}
{{#if company}}{{company}}<br>{{/if}}
{{#if address1}}{{address1}}<br>{{/if}}
{{#if address2}}{{address2}}<br>{{/if}}
{{city}}, {{state}} {{postalCode}}<br>
{{country}}<br>
{{#if dayPhone}}Day Phone: {{dayPhone}}<br>{{/if}}
{{#if eveningPhone}}Evening Phone: {{eveningPhone}}<br>{{/if}}
</div>
<input type="button" class="addressButton editButton" value="Edit"/>
<input type="button" class="addressButton deleteButton" value="Delete"/>
</td>
</tr>
</table>
</div>
</script>
</head>
<body>
<!-- The page header typically contains items such as your site heading, logo and possibly the main site navigation -->
<!-- ARIA: the landmark role "banner" is set as it is the prime heading or internal title of the page -->
<header role="banner">
<img src='images/logo.png' alt='store logo' class='logo-image'/>
<h2>UltraCart Store</h2>
<h4><a href="index.html">My Account</a> > <span class='disabled-looking'>Billing Addresses</span></h4>
<nav role="navigation">
</nav>
</header>
<div class="wrap content">
<main role='main' id='addresses'>
</main>
<div style='clear:both'></div>
</div>
<footer role="contentinfo">
<!-- Copyright information can be contained within the <small> element. The <time> element is used here to indicate that the '2015' is a date -->
<small>Copyright www.ultracart.com ©
<time datetime="2015">2015</time>
</small>
</footer>
<!-- Google Analytics - Optimized version by Mathias Bynens -->
<!-- See: http://mathiasbynens.be/notes/async-analytics-snippet -->
<!-- Change the UA-XXXX-XX string to your site's ID -->
<script type='text/javascript'>
var _gaq = [
['_setAccount', 'UA-XXXX-XX'],
['_trackPageview']
];
(function (a, b) {
var c = a.createElement(b), d = a.getElementsByTagName(b)[0];
c.src = ("https:" == location.protocol ? "//ssl" : "//www") + ".google-analytics.com/ga.js";
d.parentNode.insertBefore(c, d)
})(document, "script");
</script>
</body>
</html>