-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
187 lines (167 loc) · 6.16 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
<!doctype html>
<html lang="en" class="page">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Star Company</title>
<link rel="icon" href="./src/img/icon/favicon-32x32.png" />
<link rel="stylesheet" href="./src/styles/global.css" />
</head>
<body class="page-body">
<header class="header">
<div class="container">
<div class="header-content">
<div class="header-logo">
<a href="#" class="logo-link">
<img
src="./src/img/logo/logo.png"
alt="Star Company logo"
class="logo-img"
/>
</a>
</div>
<div class="header-login">
<form class="login-form">
<input
class="login-input email"
type="text"
placeholder="Email"
autocomplete="username"
/>
<input
class="login-input password"
type="password"
placeholder="Password"
autocomplete="current-password"
/>
<button class="login-button">Log in</button>
</form>
<div class="login-helper">
<button class="login-email-error">
Please enter valid email
</button>
<a class="login-password-link" href="#">Forgot your password?</a>
</div>
</div>
</div>
</div>
</header>
<main class="main">
<div class="container">
<div class="main-content">
<div class="main-title-wrapper">
<h1 class="main-title">StarCompany DESIGNS, MANUFACTURES AND</h1>
<h2 class="main-subtitle">
Launches Advanced Rockets and Spacecrafts
</h2>
</div>
<div class="main-register">
<button class="register-previous button"><</button>
<div class="register-form">
<div class="register-step step-1 active">
<label class="register-label">
Who are you?
<div class="custom-select profession">
<span class="select-value">Select an option</span>
<ul class="options">
<li>Engineer</li>
<li>Business Development Executive</li>
<li>Office manager/PA</li>
<li>Accountant</li>
<li>VR Designer</li>
</ul>
</div>
</label>
</div>
<div class="register-step step-2">
<label class="register-label"
>What is your age?
<div class="custom-select age">
<span class="select-value">Select an option</span>
<ul class="options">
<li>18</li>
<li>19</li>
<li>20</li>
<li>21</li>
<li>22</li>
</ul>
</div>
</label>
</div>
<div class="register-step step-3">
<label class="register-label"
>I am from
<input
type="text"
class="register-input location"
placeholder="New Roads, 70760"
/>
</label>
</div>
<div class="register-step step-4">
<label class="register-label"
>Your email address
<input
type="email"
class="register-input email"
placeholder="Input your email"
autocomplete="username"
/>
</label>
</div>
<div class="register-step step-5">
<label class="register-label"
>Create your password
<input
type="password"
class="register-input password"
placeholder="Create your password"
autocomplete="new-password"
/>
</label>
</div>
</div>
<button class="register-start button">Start now 🗸</button>
<button class="register-next button">Next step ></button>
</div>
<div class="main-helper">
<div class="register-policy-transparent active"></div>
<div class="register-policy-location">
E.g.: New Roads or 70760 We don’t use postal addresses to contact
members directly!
</div>
<div class="register-policy-private">
By clicking the button above you agree to our Terms of Use and
Privacy Policy including use of cookies and to receive
newsletters, account updates and offers sent by StarCompany.
</div>
<button class="register-error">
</button>
<div class="register-progress">
<ul class="progress-bar">
<li class="progress-item active"></li>
<li class="progress-item"></li>
<li class="progress-item"></li>
<li class="progress-item"></li>
<li class="progress-item"></li>
</ul>
</div>
</div>
</div>
</div>
</main>
<footer class="footer">
<div class="container">
<div class="footer-content">
<a class="footer-link" href="https://github.com/NataliGru/star-company" target="_blank">
Developed by NataliGru
<img src="./src/img/icon/git-hub.png" alt="git hub link" class="footer-icon">
</a>
</div>
</div>
</footer>
<script type="module" src="./src/scripts/logIn.js"></script>
<script type="module" src="./src/scripts/main.js"></script>
<script type="module" src="./src/scripts/customSelects.js"></script>
</body>
</html>