-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
163 lines (163 loc) · 5.38 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
<!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" />
<link rel="shortcut icon" href="./Assets/Logo.svg" type="image/x-icon" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./app/style.css" />
<title>Subway Multistep Form</title>
</head>
<body>
<div class="container">
<header class="header">
<img src="./Assets/Logo.svg" alt="Logo" class="logo" />
<button class="cta">Create an account</button>
</header>
<main class="main">
<div class="steps-indicator">
<div class="step-info">
<p class="count active">1</p>
<p>Full Name</p>
</div>
<div class="step-info">
<p class="count">2</p>
<p>Personal Information</p>
</div>
<div class="step-info">
<p class="count">3</p>
<p>Identification</p>
</div>
<div class="step-info">
<p class="count">4</p>
<p>Your QR Code</p>
</div>
</div>
<div class="steps step-1 active">
<div class="headline">
<h1 class="headline__title">
Using the Subway has never been easier!
</h1>
<p class="headline__lead">
Complete the sign up process and receive a QR code you can use to
use the Subway anywhere in the U.S.
</p>
</div>
<form class="form-wrapper">
<div class="form-group">
<label for="firstname">First Name</label>
<input
type="text"
name="firstname"
id="firstname"
placeholder="Steve"
/>
</div>
<div class="form-group">
<label for="middlename">Middle Name</label>
<input
type="text"
name="middlename"
id="middlename"
placeholder="Andrew"
/>
</div>
<div class="form-group">
<label for="lastname">Last Name</label>
<input
type="text"
name="lastname"
id="lastname"
placeholder="Hernands"
/>
</div>
</form>
</div>
<div class="steps step-2">
<div class="headline">
<h1 class="headline__title">Enter your personal information</h1>
<p class="headline__lead">
This is used to match what you wrote to confirm your identity.
This is required by law.
</p>
</div>
<form class="form-wrapper">
<div class="form-group">
<label for="dateofbirth">Date of Birth</label>
<input
type="text"
name="dateofbirth"
id="dateofbirth"
placeholder="May 5, 1998"
/>
</div>
<div class="form-group">
<label for="phonenumber">Phone Number</label>
<input
type="number"
name="phonenumber"
id="phonenumber"
placeholder="531 241-7657"
/>
</div>
<div class="form-group">
<label for="address">Address</label>
<input
type="text"
name="address"
id="address"
placeholder="15 Yemen Road, Yemen"
/>
</div>
</form>
</div>
<div class="steps step-3">
<div class="headline">
<h1 class="headline__title">Upload identification</h1>
<p class="headline__lead">
Acceptable forms of identification are ID, Driver’s License, or
College ID.
</p>
</div>
<form class="form-wrapper">
<div class="dropzone">
<span class="dropzone__prompt">
<img src="./Assets/Folder.svg" alt="Folder Logo" />
Drop File Here</span
>
<input type="file" name="myFile" class="dropzone__input" />
</div>
</form>
</div>
<div class="steps step-4">
<div class="headline">
<h1 class="headline__title">Here’s your QR Code!</h1>
<p class="headline__lead">
Scan this code the next time you’re in the subway, you will not
need to pay for tickets.
</p>
</div>
<div class="qr-wrapper">
<img src="./Assets/QR Code.svg" alt="QR Code" class="qr-img" />
</div>
</div>
<button class="next-btn">Next</button>
</main>
<footer class="footer">
<p class="copy">© 2021 Codewell.cc</p>
<ul>
<li>Support</li>
<li>Privacy Policy</li>
<li>Terms & Conditions</li>
</ul>
</footer>
</div>
<script src="./app/app.js"></script>
</body>
</html>