forked from amandk5/Mentimeter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.html
175 lines (164 loc) · 8.14 KB
/
cart.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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="styles/Cart_styles_1.css">
</head>
<body>
<div id="cart_om_layer">
<div id="cart_nav"></div>
<div id="cart_main_layer">
<p>Nearly there! You are almost on Mentimeter Pro!</p>
<!-- cart_section div -->
<div id="cart_om_section">
<div id="cart_in_section_1">
<div>
<p>Pay with credit or debit card</p>
<h4>Card details</h4>
<div id="section_1_form_type">
<label for="Card_number">Card number</label><br>
<input type="text" name="Card_number" id="card_number" placeholder="1111 2222 3333 4444">
<div id="section_1_form_type_double_div">
<div>
<label for="Expiration_date">Expiration date</label><br>
<input type="text" name="Expiration_date" id="expiration_date" placeholder="MM/YY">
</div>
<div>
<label for="CVV">CVV</label><br>
<input type="text" name="CVV" id="cvv" placeholder="123">
</div>
</div>
</div>
<button id="Add_vat_number">
Add VAT Number
</button>
<div id="Adding_vat_number" style="display: none;">
<label for="">VAT number</label>
<input type="text" name="" id="" placeholder="AA000000"><br>
<button id="remove_vat_number">Remove VAT number</button>
</div>
</div>
<div id="bank_transfer" style="margin: 15px auto 0px auto ;padding: 0;width: 90%; border: none;">
<p>Pay via bank transfer?</p>
</div>
</div>
<div id="cart_in_section_2">
<div>
<p>Mentimeter Pro</p>
<div>
<label for="Number_of_team_members">Number of team members</label><br>
<div id="Number_of_team_members_div">
<button id="Number_of_team_members_butt_1">-</button>
<input type="number" name="Number_of_team_members" id="Number_of_team_members">
<button id="Number_of_team_members_butt_2">+</button>
</div>
<div id="cart_details">
<div class="cart_section_2_info">
<div class="cart_section_2_info_1">
<p>Account</p>
</div>
<div class="cart_section_2_info_2">
<p id="acc">akshdf</p>
</div>
</div>
<div class="cart_section_2_info">
<div class="cart_section_2_info_1">
<p>Billing cycle</p>
</div>
<div class="cart_section_2_info_2">
<p id="bill_cycle"> asd</p>
</div>
</div>
<div class="cart_section_2_info">
<div class="cart_section_2_info_1">
<p>Number of licenses</p>
</div>
<div class="cart_section_2_info_2">
<p id="no_of_licenses">adsgads</p>
</div>
</div>
<div class="cart_section_2_info">
<div class="cart_section_2_info_1">
<p>Plan price</p>
</div>
<div class="cart_section_2_info_2">
<p id="price_plan">adga</p>
</div>
</div>
<div class="cart_section_2_info">
<div class="cart_section_2_info_1">
<p>VAT 0%</p>
</div>
<div class="cart_section_2_info_2">
<p id="VAT_percentage">adsga</p>
</div>
</div>
<div class="cart_section_2_info">
<div class="cart_section_2_info_1">
<p>Total billed now</p>
</div>
<div class="cart_section_2_info_2">
<p id="total_bill">fasdf</p>
</div>
</div>
</div>
<div>
<span id="cart_which_plan"></span>
<span>By upgrading, you agree to our </span>
<span> <a href="https://www.mentimeter.com/terms"> terms of use</a></span>
<span>and </span>
<span><a href="https://www.mentimeter.com/policies"> policies</a></span>
</div>
</div>
</div>
<div>
<button id="upgrade_butt">Upgrade</button>
</div>
</div>
</div>
<div id="cart_foot">
<div>
<div id="cart_foot_head">Mentimeter Pro top features:</div>
<div id="cart_foot_body">
<div>
<div class="cart_foot_body_class">
<p>✔️ Unlimited questions per presentation</p>
</div>
<div class="cart_foot_body_class">
<p>✔️ Remove Mentimeter branding</p>
</div>
</div>
<div>
<div class="cart_foot_body_class">
<p>✔️ Add your own logotype</p>
</div>
<div class="cart_foot_body_class">
<p>✔️ Moderate Q&A sessions</p>
</div>
</div>
</div>
</div>
<div id="cart_foot_footer">
<div>
<img src="https://s3.amazonaws.com/braintree-badges/braintree-badge-dark.png" width="164px"
height="44px" alt="">
</div>
<div>
<p>SSl Secure</p>
</div>
</div>
</div>
</div>
</div>
<div id="success_payment">
<img src="https://fcs3pub.s3.amazonaws.com/photo-book/images/payment/success.gif" alt="">
<p>Payment Successfull</p>
<div id="Back_to_home">Back to home</div>
</div>
</body>
</html>
<script src="scripts/cart.js">
</script>