-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSign-up.html
More file actions
71 lines (63 loc) · 2.42 KB
/
Sign-up.html
File metadata and controls
71 lines (63 loc) · 2.42 KB
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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up!</title>
<!-- FAVICON -->
<link rel="icon" type="image/png" href="letter-n.png">
<link rel="stylesheet" href="Styles.css">
</head>
<body>
<div class=" imageContainer">
<span>
<img class="image" src="letter-n.png" alt="Sticky Notes Image">
</span>
</div>
<div class="title">
<h1>NOTE APP</h1>
<br><br>
<span> WELCOME TO NOTE APP 🎉 <br>
PLEASE SIGN UP TO LOGIN APP ✨
</span>
</div>
<div class="loginContainer">
<div class="signIn"> SIGN UP </div>
<form id="signUpForm">
<div class="inputGroup">
<label for="name">NAME</label>
<input type="text" id="name" name="name" required>
</div>
<div class="inputGroup">
<label for="surname">SURNAME</label>
<input type="text" id="surname" name="surname" required>
</div>
<div class="inputGroup">
<label for="email">E-MAIL</label>
<input type="email" id="email" name="email" required>
</div>
<div class="inputGroup">
<label for="password">PASSWORD</label>
<input type="password" id="password" name="password" required>
</div>
<div class="inputGroup">
<input type="password" id="re-password" name="re-password" required placeholder="Please re-enter your password to confirm">
</div>
<button type="submit" id="signUpButton">Sign Up 🎊</button>
<br>
<button type="button" id="goToSignIn"> ✨ Return Sign In Page ✨</button>
</form>
</div>
<footer class="footer">
<div class="footerContent">
<p>Contact: contact@noteapp.com</p>
<nav>
<a href="/About.html">About</a>
<a href="/About.html">Services</a>
<a href="/About.html">Contact</a>
</nav>
</div>
</footer>
<script src="SignUpScript.js"></script>
</body>
</html>