forked from ghostmkg/web-development
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (35 loc) · 1.27 KB
/
index.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
<!DOCTYPE html>-
<html lang="en" dir="ltr">
<head>
<title>Home Page</title>
<meta charset="utf-8">
<link href="assets/css/style.css" rel="stylesheet"/>
<script src="jquery-1.10.2.min.js"></script>
</head>
<body>
<div id="box">
<div id="main"></div>
<div id="loginform">
<h1>LOGIN</h1>
<input type="email" placeholder="Email"/><br>
<input type="password" placeholder="Password"/><br>
<button>Login</button>
</div>
<div id="signupform">
<h1>SIGN UP</h1>
<input type="text" placeholder="Full Name"/><br>
<input type="email" placeholder="Email"/><br>
<input type="password" placeholder="Password"/><br>
<button>Sign Up</button>
</div>
<div id="login_msg">Have an account?</div>
<div id="signup_msg">Don't have an account?</div>
<button id="login_btn">Login</button>
<button id="signup_btn">Sign Up</button>
</div>
<div>
<h1>Welcome To The Html WebPage</h1>
</div>
<script src="assets/js/script.js"></script>
</body>
</html>