-
Notifications
You must be signed in to change notification settings - Fork 1
/
login.php
132 lines (121 loc) · 5.05 KB
/
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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<?php
$err=$_GET['id'];
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="css/materialize.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="bootstrap.css">
<link rel="shortcut icon" href="images/h20.png">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js"></script>
<style>
<!-- body {font-family: Arial, Helvetica, sans-serif;} -->
<!-- input[type=text], input[type=password] { -->
<!-- width: 100%; -->
<!-- padding: 12px 20px; -->
<!-- margin: 8px 0; -->
<!-- display: inline-block; -->
<!-- border: 1px solid #ccc; -->
<!-- box-sizing: border-box; -->
<!-- } -->
<!-- button { -->
<!-- background-color: #4CAF50; -->
<!-- color: white; -->
<!-- padding: 14px 20px; -->
<!-- margin: 8px 0; -->
<!-- border: none; -->
<!-- cursor: pointer; -->
<!-- width: 100%; -->
<!-- } -->
button:hover {
opacity: 0.8;
background-color: #ffaf00;
}
<!-- .cancelbtn { -->
<!-- width: auto; -->
<!-- padding: 10px 18px; -->
<!-- background-color: #f44336; -->
<!-- } -->
<!-- .imgcontainer { -->
<!-- text-align: center; -->
<!-- margin: 24px 0 12px 0; -->
<!-- } -->
img.avatar {
width: 40%;
border-radius: 50%;
<!-- .container { -->
<!-- padding: 16px; -->
<!-- } -->
<!-- span.psw { -->
<!-- float: center; -->
<!-- padding-top: 16px; -->
<!-- } -->
<!-- /* Change styles for span and cancel button on extra small screens */ -->
<!-- @media screen and (max-width: 300px) { -->
<!-- span.psw { -->
<!-- display: block; -->
<!-- float: center; -->
<!-- } -->
<!-- .cancelbtn { -->
<!-- width: 100%; -->
<!-- } -->
}
</style>
</head>
<body style="background-color: #210002;">
<div class="container-fluid" style="background-image:url('images/keyart-mobile.jpg'); background-size:cover; background-repeat: no-repeat; background-position: center;">
<div class="Logo" style="text-align: center;">
<img src="images/h2.png" alt="H2 Icon" style="height: 200px;">
<h1 style="color:green; size: 10px;font-family:Klavika Bold;text-align:center">Hostel 2</h1>
</div>
<h2 style="text-align:center;color:green;">Login</h2>
<div class="container" style="background-color: transparent;">
<form action="check.php" method = "POST" enctype = "multipart/form-data" style="background-color:default;text-align:center">
<div class="form-group">
<label for="Username"><h2 style="color:#ffaf00;text-align:center">Username</h2></label>
<input type="text" placeholder="Enter Username" onfocus="this.placeholder = ''" name="Username" required style="font-size: 2em; color:#ffaf00; background-color:transparent;text-align:center">
</div>
<div class="form-group">
<label for="psw"><h2 style="color:#ffaf00;text-align:center">Password</h2></label>
<input type="password" placeholder="Enter Password" onfocus="this.placeholder = ''" name="password" required style="font-size: 2em; color:#ffaf00; background-color:transparent; text-align:center">
</div>
<?php
if($err=="Err")
{
echo "<h3 style='color:red;'>Wrong Username or Password entered</h3>";
}
?>
</div>
<div class="container" style="background-color: transparent;">
<div class="col-lg-12 col-md-12 col-xs-12">
<button class="btn btn-outline-warning"type="submit" style="font-weight:900;text-align:center">login</button>
</div>
</div>
</form>
<div class="container" style="background-color: transparent;">
<div class="col-lg-6 col-md-6 col-xs-6">
<a href="https://gymkhana.iitb.ac.in/~hostel2/forgotpassword.html">
<button class="btn btn-outline-warning" style="color:#ffaf00;font-weight:900;background-color:transparent">Forgot password?</button>
</a>
</div>
<div class="col-lg-6 col-md-6 col-xs-6">
<a href="https://gymkhana.iitb.ac.in/~hostel2/sso.php">
<button class="btn btn-outline-warning" style="color:#ffaf00;font-weight:900;background-color:transparent">Sign Up</button>
</a>
</div>
</div>
</div>
</body>
</html>