-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.php
42 lines (32 loc) · 1.07 KB
/
index.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
<?php
require('checklogin.php'); // Includes Login Script
?>
<!DOCTYPE html>
<html>
<head>
<title>PC Solutions</title>
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="css/global.css">
<link rel="stylesheet" href="css/login.css" />
<script src="js/modernizr.custom.63321.js"></script>
<style>
@import url(http://fonts.googleapis.com/css?family=Raleway:400,700);
</style>
</head>
<body>
<div class="container">
<div class="rect">
<img src="images/logo-pcs.jpg">
<form class="form-4" method="post" action="">
<h1>Login / <span class="reg"><a href="register.php">Register</a></span></h1>
<span id="error"><?php echo $error; ?></span>
<label for="login">Username</label>
<input type="text" name="username" placeholder="Username" autofocus required>
<label for="password">Password</label>
<input type="password" name="password" placeholder="Password" required>
<input type="submit" name="submit" value="Login">
</form>
</div>
</div>
</body>
</html>