-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.php
More file actions
54 lines (54 loc) · 1.84 KB
/
admin.php
File metadata and controls
54 lines (54 loc) · 1.84 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Group 2 project</title>
<link rel="stylesheet" type="text/css" href="css/flexboxgrid.css">
<link rel="stylesheet" type="text/css" href="css/fontawesome-all.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<header id="main-header">
<div class="container-fluid">
<div class="row center-md center-xs center-sm center-lg">
<div class="col-md-12 col-sm-12 col-xs-12 col-lg-12 end-lg end-md end-sm end-xs">
<img src="images/logo.png" class="logo of site" alt="logo of site">
</div>
</div>
</div>
<div class="container" id="login-box">
<div class="row center-md center-xs center-sm center-lg">
<div class="col-md-12 col-sm-12 col-xs-12 col-lg-12">
<div id="login-section" class="">
<form method="post" action="login.php">
<div class="input-field">
<div class="field">
<span class="fa fa-envelope"></span>
<input type="text" name="username" placeholder="username or e-mail" required>
</div>
<div class="field">
<span class="fa fa-lock"></span>
<input type="password" name="password" placeholder="password..." required>
</div>
</div>
<p class="forgot end-xs end-sm end-md end-lg">forgotten password?</p>
<div class="submit-field">
<button type="submit" class="login-button"><? echo'LOG IN'; ?></button>
</div>
</form>
</div>
</div>
</div>
</div>
<footer>
<div class="container-fluid">
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12 col-lg-12 center-xs center-sm center-md center-lg">
<p class="footer-text">© <?php echo '2018 - CSC 214 GROUP 2' ?></p>
<p style="font-size:10px;"><?php echo 'Albert, Romaric, Wilson, Romario, Tipa, Elijah, Steve, Marius, Elenor'?></p>
</div>
</div>
</div>
</footer>
</header>
</body>
</html>