-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.php
43 lines (34 loc) · 872 Bytes
/
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
<?
// require basic code
require_once("hidden/basic.php");
?>
<!DOCTYPE html>
<html>
<head>
<link href="css/loginStyle.css" rel="stylesheet" type="text/css">
<title>Project X | Login</title>
</head>
<body>
<div id="middle">
<form action="login2.php" method="post">
<table>
<tr>
<td>Email:</td>
<td><input name="email" type="text"></td>
</tr>
<tr>
<td>Password:</td>
<td><input name="password" type="password"></td>
</tr>
<tr>
<td colspan="2">
<input type="submit" value="Log In"></td>
</tr>
</table>
</form>
</div>
<div id="bottom">
or <a href="register.php">register</a> for an account
</div>
</body>
</html>