-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
202 lines (185 loc) · 6.93 KB
/
index.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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Multi Step Form</title>
<link rel="stylesheet" href="./assets/styles/style.css">
</head>
<body>
<section class="container">
<main>
<aside>
<section class="sidebar-section">
<section class="sidebar-number">
1
</section>
<section class="sidebar-info">
<p>Step 1</p>
<h2>Your info</h2>
</section>
</section>
<section class="sidebar-section">
<section class="sidebar-number">
2
</section>
<section class="sidebar-info">
<p>Step 2</p>
<h2>Select plan</h2>
</section>
</section>
<section class="sidebar-section">
<section class="sidebar-number">
3
</section>
<section class="sidebar-info">
<p>Step 3</p>
<h2>Add-ons</h2>
</section>
</section>
<section class="sidebar-section">
<section class="sidebar-number">
4
</section>
<section class="sidebar-info">
<p>Step 4</p>
<h2>Summary</h2>
</section>
</section>
</aside>
<section class="sidebar-section-info">
<section class="description">
</section>
<section class="middle-section">
<!-- for input container ---------- -->
<section class="input-container">
<section class="input-section ">
<label for="name">Name</label>
<input type="text" id="name" placeholder="e.g. Stephen King">
<span class="Error-message"></span>
</section>
<section class="input-section">
<label for="email">Email Address</label>
<input type="email" id="email" placeholder="e.g. [email protected]">
<span class="Error-message"></span>
</section>
<section class="input-section">
<label for="phone">Phone Number</label>
<input type="tel" id="phone" placeholder="e.g. +1 234 567 890">
<span class="Error-message"></span>
</section>
</section>
<!-- for plans container -------- -->
<section class="plans-container hide-container">
<section class="plans">
<section class="plan-section plan-selection">
<section class="image-section">
<img src="./assets/images/icon-arcade.svg">
</section>
<section class="plan-info">
<h3>Arcade</h3>
<p data-price="9">$9/mo</p>
<p class="additional-free">2 months free</p>
</section>
</section>
<section class="plan-section">
<section class="image-section">
<img src="./assets/images/icon-advanced.svg">
</section>
<section class="plan-info">
<h3>Advanced</h3>
<p data-price="12">$12/mo</p>
<p class="additional-free">2 months free</p>
</section>
</section>
<section class="plan-section">
<section class="image-section">
<img src="./assets/images/icon-pro.svg">
</section>
<section class="plan-info">
<h3>Pro</h3>
<p data-price="15">$15/mo</p>
<p class="additional-free">2 months free</p>
</section>
</section>
</section>
<section class="monthly-yearly-section">
<span>Monthly</span>
<section class="toggle">
<p class="switch"></p>
</section>
<span>Yearly</span>
</section>
</section>
<!-- for add-ons container ------------>
<section class="add-ons-container hide-container">
<section class="service-section">
<section class="service-input-info-section">
<input type="checkbox" name="service">
<section class="service-info">
<h3>Online service</h3>
<p>Access to multiplayer games</p>
</section>
</section>
<span class="service-price" data-price="1">+$1/mo</span>
</section>
<section class="service-section">
<section class="service-input-info-section">
<input type="checkbox" name="service">
<section class="service-info">
<h3>Larger storage</h3>
<p>Extra 1TB of cloud save</p>
</section>
</section>
<span class="service-price" data-price="2">+$2/mo</span>
</section>
<section class="service-section">
<section class="service-input-info-section">
<input type="checkbox" name="service">
<section class="service-info">
<h3>Customizable Profile</h3>
<p>Custom theme on your profile</p>
</section>
</section>
<span class="service-price" data-price="2">+$2/mo</span>
</section>
</section>
<!-- finishing up container ----------- -->
<section class="finishing-up-container hide-container">
<section class="total-summary-info-section">
<section class="monthly-yearly-summary-section">
<section class="info">
<h3>Arcade(Monthly)</h3>
<p id="change-plan">Change</p>
</section>
<span>$9/mo</span>
</section>
<section class="summary-service-section">
</section>
</section>
<section class="total-price-section">
<p>Total (per month)</p>
<span>$120/yr</span>
</section>
</section>
<!-- thankyou container -------------->
<section class="thankyou-container hide-container">
<section class="image">
<img src="./assets/images/icon-thank-you.svg" alt="thankyou">
</section>
<h1>Thank you!</h1>
<p>Thanks for confirming your subscription! We hope you have fun
using our platform. If you ever need support, please feel free to email us
at [email protected].</p>
</section>
</section>
<section class="buttons">
<button id="back-step-btn" class="hide-button">Go Back</button>
<button id="next-step-btn">Next Step</button>
</section>
</section>
</main>
</section>
<script src="./script.js"></script>
</body>
</html>