forked from iamsarthak/infoxpression
-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.php
66 lines (47 loc) · 2.4 KB
/
login.php
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
<?php include'core/init.php';
protect_logged_page();
//protect_page();
?>
<!DOCTYPE html>
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Login | Signup InfoX 2016</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Dosis:100,300,400,700,900,300italic,400italic,700italic,900italic" type="text/css" media="all">
<script src="js/modernizr-2.6.2.min.js"></script>
<script src="js/jquery.countdown.min.html"></script>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/styles.css" type="text/css">
</head>
<body style="background-color:#000000">
<?php include'includes/general/header.php'?>
<div class="signup" style="background-image: url(img/back.png)">
<div class="middle">
<div class="signup-widget widget">
<div class="widget-header">
<table>
<tbody><tr>
<td id="tab-login" class="current">
<a href="login.php">
Login
</a>
</td>
<td><a href="index.html"><img width="150px" src="img/logo-infox.png"></a></td>
<td id="tab-signup">
<a href="signup.php">Register</a>
</td>
</tr>
</tbody></table>
</div>
<div class="widget-body">
<form id="login-form" method="post" action="signin.php">
<input type="email" name="email" placeholder="Email" required autocomplete="off">
<input type="password" name="password" placeholder="Password" required autocomplete="off">
<a id="forgotten" href="forgotpassword.php">forgot?</a><!--><!-->
<input id= "submit"type="submit" name="register" value="Login" />
</form>
</div>
</div>
</div>
</div>
</body>
</html>