-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 1.83 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
<!DOCTYPE html>
<html>
<head>
<title>Talkative</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/main.css" type="text/css" media="screen">
<script type="text/javascript" src="js/jquery-ui-1.12.1.custom/jquery-ui.js"></script>
<script type="text/javascript" src="js/jquery-3.1.0.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i" rel="stylesheet">
</head>
<body class="body">
<div class="header_area">
<div class="header"></div>
</div>
<div align="center">
<div class="form-area">
<form action="" id="log_from" method="post" enctype="multipart/form-data">
<input type="text" name="username" value="" placeholder="Username"><br>
<input type="password" name="password" value="" placeholder="Password"><br>
<input type="submit" name="login" value="Log In"><br>
<a href="#">Forgot Password?</a><a class="reg_form" href="#"> or Register Here</a>
</form>
<form action="" method="post" enctype="multipart/form-data" id="reg_form">
<input type="text" name="fname" value="" placeholder="Full Name"><br>
<input type="email" name="email" value="" placeholder="Email"><br>
<input type="text" name="username" value="" placeholder="Username"><br>
<input type="password" name="password" value="" placeholder="Password"><br>
<input type="submit" name="reg" value="Register"><br>
<a href="#">Have an account? </a><a class="log_form" href="#">Login Here</a>
</form>
</div>
</div>
</body>
</html>