-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.html
66 lines (55 loc) · 1.56 KB
/
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
<!doctype html>
<html>
<head>
<title>Login/SignUp Page</title>
</head>
<link rel="stylesheet" type="text/css" href="signup.css">
<link rel="stylesheet" type="text/css" href="logindetails.css">
<link rel="stylesheet" type="text/css" href="signupdetails.css">
<link rel="stylesheet" type="text/css" href="login.css">
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous">
</script>
<script type="text/javascript" src="login.js"></script>
<body>
<div id="signup">
<h1>
New Here?
</h1>
<p>
Sign up and discover great amount of new discoveries!
</p>
<button type="button" id="signin">SignIn</button>
</div>
<div id="login">
<h1>
Already Signed Up!
</h1>
<p>
One of us.If you already have an account.Just sign In!
</p>
<button type="button" id="signupbutton">SignUp</button>
</div>
<div id="logindetails">
<h1>Welcome Back!</h1>
<p>EMAIL</p><br><br><input type="text" name="email"><br><br><br><br>
<p>PASSWORD</p><br><br><input type="password" name="pass"><br><br><br><br>
<a href="#">Forgotten Password</a>
<br><br><br>
<BUTTON type="button">SignIn</BUTTON>
</div>
<div id="signupdetails">
<h1>TIME TO FEEL LIKE HOME!</h1>
<p>NAME</p></p><br><br>
<input type="text" name="NAME"><br><br><br><br>
<p>EMAIL</p><br><br>
<input type="text" name="email"><br><br><br><br>
<p>PASSWORD</p><br><br>
<input type="password" name="pass"><br><br><br><br>
<BUTTON type="button">SignUp</BUTTON><br><br>
<a href="#">JOIN WITH FACEBOOK</a>
</div>
</body>
</html>