-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (64 loc) · 2.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>WebDev Challenge - Exercise 1</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<header>
<h1>Masteralb</h1>
<img src="img/logo-top-trans.png" alt="masteralb logo">
</header>
<h2>Register Form</h2>
<div class="form-shadow">
<form>
<div class="input-group">
<label for="user">
<img src="img/head.png" alt="username">
</label>
<input class="form-control" type="text" id="user" placeholder="Username">
</div>
<div class="input-group">
<label for="pass">
<img src="img/password.png" alt="password">
</label>
<input class="form-control" type="text" id="pass" placeholder="Password">
</div>
<div class="input-group">
<label for="pass-confirm">
<img src="img/password.png" alt="password-confirm">
</label>
<input class="form-control" type="text" id="pass-confirm" placeholder="Confirm Password">
</div>
<div class="input-group">
<label for="email">
<img src="img/email.png" alt="email">
</label>
<input class="form-control" type="text" id="email" placeholder="Email">
</div>
<div class="input-group">
<label for="location">
<img src="img/location.png" alt="location">
</label>
<select class="select-location" name="dropdown" id="location">
<option selected>Your location</option>
<option value="poland">Poland</option>
<option value="italy">Italy</option>
<option value="usa">United States</option>
<option value="france">France</option>
</select>
</div>
<div class="checkbox">
<input type="checkbox" id="termofuse">
<label for="termofuse"><span>I have read and accept the terms of use.</span></label>
</div>
<div class="button">
<button type="submit"><span>Sign Up</span></button>
</div>
</form>
</div>
</div>
</body>
</html>