forked from MakTsy/SolaceNews
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SignUpPage.html
71 lines (67 loc) · 3.04 KB
/
SignUpPage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>SignUp</title>
<link href="https://fonts.gstatic.com" rel="preconnect">
<link href="https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap"
rel="stylesheet">
<link href="styles/toggle_header.css" rel="stylesheet">
<link href="styles/style.css" rel="stylesheet">
<link href="styles/footer.css" rel="stylesheet">
<script crossorigin="anonymous" src="https://kit.fontawesome.com/9d8814d242.js"></script>
<script src="scripts/emailValidation.js"></script>
<script src="scripts/color.js"></script>
</head>
<body>
<div class="main_container">
<header class="header">
<input class="toggler" type="checkbox">
<div class="hamburger">
<div></div>
</div>
<div class="menu">
<ul>
<li><a href="news">News</a></li>
<li><a href="business">Business</a></li>
<li><a href="technologies">Technologies</a></li>
<li><a href="premium">Premium</a></li>
</ul>
</div>
<h1>Solace News</h1>
</header>
<main class="content">
<form action="submit" class="form">
<div class="form_title">
<h2>Sign Up</h2>
</div>
<fieldset>
<div class="parameter">
<label for="email">Email</label>
<input class="text_input" id="email" name="" type="email" onclick="blackBorder(this)">
</div>
<div class="parameter">
<label for="password">Password</label>
<input class="text_input" id="password" type="password" onclick="blackBorder(this)">
<button class="show_password" type="button" onclick="show_hide_password()"><i class="far fa-eye-slash"></i></button>
</div>
<div class="parameter">
<label for="confirm_password">Confirm password</label>
<input class="text_input" id="confirm_password" type="password" onclick="blackBorder(this)">
<button class="show_password" type="button" onclick="show_hide_password()"><i class="far fa-eye-slash"></i></button>
</div>
<input class="red_button" type="submit" value="Sign Up">
</fieldset>
</form>
<script src="scripts/validateForm.js"></script>
<script src="scripts/showPassword.js"></script>
</main>
<footer class="footer">
<p>© 2021 Solace News & Media Limited or its affiliated companies. All rights reserved.</p>
<a href="https://www.facebook.com/"><i class="fab fa-facebook-square"></i></a>
<a href="https://twitter.com/DmytroKuleba"><i class="fab fa-twitter-square"></i></a>
</footer>
</div>
</body>
</html>