-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
99 lines (78 loc) · 2.22 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?php
session_start();
if(isset($_SESSION["user_data"]))
{
header("location:./dashboard/admin/");
}
?>
<!DOCTYPE html>
<html>
<head>
<title>Sports Club | Login</title>
<link rel="stylesheet" href="./css/style.css"/>
<link rel="stylesheet" type="text/css" href="./css/entypo.css">
</head>
<style>
h2 {
color:white;
background-image: url("blaze_back_new.png");
width: 1366px;
align-items: center;
}
</style>
<body>
<center><h2 style="color:#7CFC00;font-size:30px"><BR><BR><BR>WELCOME TO <BR>SPORTS CLUB<BR><BR><BR></h2></center>
<body class="page-body login-page login-form-fall">
<div id="container">
<div class="login-container">
<div class="login-header login-caret">
<div class="login-content">
<a href="#" class="logo">
<img src="logo1.png" alt="" />
</a>
<p class="description">Dear user, log in to access the admin area!</p>
<!-- progress bar indicator -->
<div class="login-progressbar-indicator">
<h3>43%</h3>
<span>logging in...</span>
</div>
</div>
</div>
<div class="login-progressbar">
<div></div>
</div>
<div class="login-form">
<div class="login-content">
<form action="secure_login.php" method='post' id="bb">
<div class="form-group">
<div class="input-group">
<div class="input-group-addon">
<i class="entypo-user"></i>
</div>
<input type="text" placeholder="User ID" class="form-control" name="user_id_auth" id="textfield" data-rule-minlength="6" data-rule-required="true">
</div>
</div>
<div class="form-group">
<div class="input-group">
<div class="input-group-addon">
<i class="entypo-key"></i>
</div>
<input type="password" name="pass_key" id="pwfield" class="form-control" data-rule-required="true" data-rule-minlength="6" placeholder="Password">
</div>
</div>
<div class="form-group">
<button type="submit" name="btnLogin" class="btn btn-primary">
Login In
<i class="entypo-login"></i>
</button>
</div>
</form>
<div class="login-bottom-links">
<a href="forgot_password.php" class="link">Forgot your password?</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>