-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathindex.php
58 lines (54 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
<html>
<head>
<title>Online Compiler</title>
<meta name="keywords" content="Online,Compiler,Online Compiler" />
<link rel="shortcut icon" href="styles/favicon.ico" />
<link rel="stylesheet" type="text/css" href="styles/style.css" />
</head>
<body>
<div id="whole">
<div id="header">
<!--<img src="styles/header.png" width="1000px" height="200px" alt="BITS logo" />
<br />-->
<img src="styles/BITS_univ_logo.png" class="BITS_logo" width="400px" height="134px" alt="BITS logo" />
<img src="styles/title_name.png" class="title_name" width="290px" height="134px" alt="Title" />
<!--<p class="title_name">
WILP Online Lab
</p>-->
<!--Build block of blue-->
<img class="top_bar" src="styles/BITS_bar.png" width="400px" height="6px" alt="bar" />
</div>
<div id="content">
<?php
session_start();
if(isset($_SESSION['username']))
{
$folder=$_SESSION['username'];
header("Location: ./$folder/");
}
?>
<div id="login_portal">
<form action="checklogin.php" method="post">
<table width="300" border="0" cellspacing="0" cellpadding="2">
<tr><td>Username<td><td>:<td><td><input type="text" name="username"><td></tr>
<tr><td>Password<td><td>:<td><td><input type="password" name="password"><td></tr>
<tr><td colspan="2"><center><input type="submit" value="Login" /></center></td></tr>
<?php if(isset($_GET['login_attempt']) and ($_GET['login_attempt']==1)) {?>
<font color="red" class="error">Bad Login or Password. Please try again. <br/></font>
<?php }?>
</table>
</form>
</div>
</div>
<div id="bottom">
<img class="bottom_bar" src="styles/BITS_bar.png" width="400px" height="6px" alt="bar" /><br /><hr />
<p class="descri">
<strong> An institution deemed to be a University estd. vide Sec.3 of the UGC<br />
Act,1956 under notification # F.12-23/63.U-2 of Jun 18,1964</strong><br />
© 2011-2012 Centre for Software Development,SDET Unit, BITS-Pilani, India.<br />
Contact us : [email protected]</p>
<img class="tagline" src="styles/tagline.png" width="300px" height="98px" alt="BITS_tagline" />
</div>
</div>
</body>
</html>