-
Notifications
You must be signed in to change notification settings - Fork 3
/
admin.php
41 lines (35 loc) · 1.65 KB
/
admin.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Entrepreneurship Cell-KGEC</title>
<link rel="icon" type="icon/png" href="dependencies/img/Ecelllogohigh.png">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--bootstrap cdns-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<!--font awasome cdn-->
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="stylesheet" href="css/admin.css">
<script src="js/admin.js"></script>
</head>
<body>
<div id="wrapper">
<form autocomplete="off">
<div class="input-wrapper">
<label for="username"><i class="fa fa-user fa-2x"></i></label><input type="text" id="username" placeholder="Username" spellcheck="false">
</div>
<div class="input-wrapper">
<label for="password"><i class="fa fa-lock fa-2x"></i></label><input type="password" id="password" placeholder="Password">
</div>
<div class="input-wrapper">
<input type="submit" value="Sign In">
</div>
</form>
<button id="back" class="btn bbnn">Back To Website</button>
</div>
</body>
</html>