-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
executable file
·51 lines (48 loc) · 1.06 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
<?php
require_once("headerlogin.php");
?>
<div class="alert alert-secondary"><h1>Login</h1></div>
<div class="container-fluid" style="margin-top: 75px;margin-bottom: 75px;">
<div class="row">
<div class="col-md-2">
</div>
<div class="col-md-8">
<form action="code.php" role="form" method="post">
<div class="form-group">
<label for="rn">
Roll No
</label>
<input class="form-control" id="rn" type="text" name="rn"/>
</div>
<div class="form-group">
<label for="ps">
Password
</label>
<input class="form-control" id="ps" type="password" name="ps"/>
</div>
<button type="submit" class="btn btn-default" value="Login" name="btn">
Login
</button>
</form>
<br/>
<a href="register.php">Register</a>
<a href="forgot.php" style="float: right;">Forgot Password?</a>
</div>
<div class="col-md-2">
</div>
</div>
</div>
<font color="red">
<h4>
<?php
if(@$_GET["msg"]==1)
{
?>
Enter Correct username and password
<?php
}
?>
</h4></font>
<?php
require_once("footerlogin.php");
?>