-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup_page.html
92 lines (76 loc) · 2.21 KB
/
signup_page.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href= "Assets/Images/signup.png">
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap" rel="stylesheet"/>
<link rel="stylesheet" href="Assets/Style/SignUp.css">
<title>Sign-Up</title>
</head>
<body>
<!--background image-->
<body style="background-image: url('Assets/Images/programmer.gif')">
<div class="main">
<h2 class="Signup">Sign-Up</h2>
<label for="E-mail">E-mail:</label><br />
<input
required=""
type="email"
id="Email"
name="Email"
onfocus="this.value=''"
placeholder="Email"
/><br />
<form>
<label for="Username">User-name:</label><br />
<input
required=""
type="text"
id="Username"
name="Username"
placeholder="User-name"
onclick="this.value=''"
/><br>
<label for="password">Password:</label><br />
<input
required=""
type="text"
id="password"
name="Password"
onfocus="this.value=''"
placeholder="Password"
/><br>
<label for="confirm-password">Confirm Password:</label><br />
<input
required=""
type="text"
id="confirm-Password"
name="confirm-Password"
onfocus="this.value=''"
placeholder="Confirm-password"
/><br>
</form>
<button type="submit"><p>Sign-Up</p></button>
<p class="signup_link">
Already have an account? <a href="index.html">Log-in.</a>
</p>
<section class="icons">
<a href="Your Facebook link"
><img
src="https://img.icons8.com/ios-filled/50/000000/facebook-new.png"
/></a>
<a href="Your Twitter link "
><img src="https://img.icons8.com/ios-filled/50/000000/twitter.png"
/></a>
<a href="Your Instagram link"
><img
src="https://img.icons8.com/ios-filled/50/000000/instagram-new.png"
/></a>
</section>
</div>
</body>
</html>
</body>
</html>