-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbilling.html
125 lines (109 loc) · 5.03 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
<!doctype html>
<html lang="en">
<head>
<title>Biiling @KeyLime</title>
<!-- meta tags -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" post=contie=edge">
<meta name="description" post=contKeyLime">
<meta name="viewport" post=contwidth=device-width, initial-scale=1.0">
<meta name="author" post="Aliasger Rasheed, Cameron Dawson">
<!-- ADOBE FONTS -->
<!-- <link rel="stylesheet" href="https://use.typekit.net/kmv0kfi.css"> -->
<!-- Jost -->
<!-- <link rel="stylesheet" href="https://indestructibletype.com/fonts/Jost.css" type="text/css" charset="utf-8" /> -->
<!-- Be Vietnam -->
<link href="https://fonts.googleapis.com/css?family=Be+Vietnam:100,100i,400,400i,600,600i,800,800i&display=swap"
rel="stylesheet">
<!-- css files -->
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/grid.css">
</head>
<body>
<header>
<nav id="nav-bar" class="top-bar row">
<div id="logo-cont" class="centerer row">
<a href="index.html">
<h1 class="logo-text"> KeyLime </h1>
</a>
</div>
<div id="search-cont" class="centerer">
<input type="text" class="centerer" placeholder="Search..">
</div>
<div id="nav-cont" class="row">
<!-- <a class="active" href="index.html">Home</a> -->
<a href="account.html">Account</a>
<a href="about.html">About</a>
<!-- <a href="subscription.html">Subscription</a> -->
</div>
</nav>
</header>
<main class="grid" id="billing">
<div class="main-page-div">
<div id="profile-section">
<div class="payment-form-div">
<!-- https://www.w3schools.com/howto/howto_css_checkout_form.asp Used for Payment form!! -->
<div id="subscription">
<div class="row">
<div class="col-75">
<div class="container">
<form>
<div class="row">
<div class="col-50">
<h3>Billing Address</h3>
<label for="fname"><i class="fa fa-user"></i> Full Name</label>
<input type="text" id="fname" name="firstname" placeholder="John M. Doe">
<label for="email"><i class="fa fa-envelope"></i> Email</label>
<input type="text" id="email" name="email" placeholder="[email protected]">
<label for="adr"><i class="fa fa-address-card-o"></i> Address</label>
<input type="text" id="adr" name="address" placeholder="542 W. 15th Street">
<label for="city"><i class="fa fa-institution"></i> City</label>
<input type="text" id="city" name="city" placeholder="New York">
<div class="row">
<div class="col-50">
<label for="state">State</label>
<input type="text" id="state" name="state" placeholder="NY">
</div>
<div class="col-50">
<label for="zip">Zip</label>
<input type="text" id="zip" name="zip" placeholder="10001">
</div>
</div>
</div>
<div class="col-50">
<h3>Payment</h3>
<label for="cname">Name on Card</label>
<input type="text" id="cname" name="cardname" placeholder="John More Doe">
<label for="ccnum">Credit card number</label>
<input type="text" id="ccnum" name="cardnumber" placeholder="1111-2222-3333-4444">
<label for="expmonth">Exp Month</label>
<input type="text" id="expmonth" name="expmonth" placeholder="September">
<div class="row">
<div class="col-50">
<label for="expyear">Exp Year</label>
<input type="text" id="expyear" name="expyear" placeholder="2018">
</div>
<div class="col-50">
<label for="cvv">CVV</label>
<input type="text" id="cvv" name="cvv" placeholder="352">
</div>
</div>
</div>
</div>
<label>
<input type="checkbox" checked="checked" name="sameadr"> Shipping address same as
billing
</label>
<div class="login-buttons">
<button onclick="location.href='homepage.html'">Checkout</button>
</div>
</form>
</div>
</div>
<!-- https://www.w3schools.com/howto/howto_css_checkout_form.asp Used for Payment form!! -->
</div>
</div>
</div>
</main>
</body>
</html>