forked from MakTsy/SolaceNews
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCompletedSignUp.html
68 lines (63 loc) · 2.59 KB
/
CompletedSignUp.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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>
<title>Complete SignUp</title>
</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>Complete your sign-up</h2>
</div>
<fieldset>
<div class="parameter">
<label for="first_name">First Name</label>
<input class="text_input" placeholder="Enter your first name" id="email" name="" type="text_input" onclick="blackBorder(this)">
</div>
<div class="parameter">
<label for="last_name">Last Name</label>
<input class="text_input" placeholder="Enter your first name" id="email" name="" type="text_input" onclick="blackBorder(this)">
</div>
<button class="add_photo">
<img src="img/Plus.svg">
<p>Add photo</p>
</button>
<input class="red_button" type="submit" value="Confirm">
</fieldset>
</form>
</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>