-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathSign up.html
More file actions
55 lines (44 loc) · 1.57 KB
/
Sign up.html
File metadata and controls
55 lines (44 loc) · 1.57 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
<!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="stylesheet" href="sign up.css">
<link href="images/logo_1.png" rel="icon">
<title>Sign Up</title>
</head>
<body>
<div class="loginbox">
<img src="images/logo_1.png" class="avatar" alt="">
<h1 id="heading">Sign Up </h1>
<br> <br> <br>
<form>
<p class="a">E-mail</p>
<input type="email" name="" title="email" placeholder="Enter Email">
<p class="a">Password</p>
<input type="password" name="" placeholder="Enter Password">
<p class="a">Re-enter Password</p>
<input type="password" name="" placeholder="Enter Password">
<br>
<br>
<input type="submit" name="" title="Sign Up"value="Sign Up">
<br>
<p class="a">Already have an account?
<a id="sign-up" href="log in.html"> Log In</a> </p>
<br>
<span class="a">Sign-In With</span>
<span><input type="submit" name="" value="Google"></span>
<span><input type="submit" name="" value="Facebook">
</span>
</form>
<br>
<br><br>
<footer class="footer">
<center>
©Gantavyaa | All Rights Reserved
</center>
</footer>
</div>
</body>
</html>