-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
66 lines (50 loc) · 1.6 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
<?php
session_start();
$msg = '';
if (isset($_GET['login'])) {
if ($_GET['login'] == 0) {
$msg = 'Invalid Log in';
}
}
?>
<!DOCTYPE html>
<html>
<head>
<title>Webpage2</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="include/bootstrap/css/bootstrap.css" type="text/css">
<link rel="stylesheet" href="include/css/style.css" type="text/css">
</head>
<style>
select[name]{
background-color: white;
margin: 20px;
height: 30px;
width: 185px;
}
</style>
<body>
<b id="ireset">
<div align="center">
<div class="well" align="center" style="border: 2px solid black;">
<h1 style="color:black;"> CSU Queuing System </h1>
<form method="POST" action="login.php">
<b>Username:</b>
<input type="text" name="username" required><br><br>
<b>Password :</b>
<input type="password" name="password" required><br>
<b> Select Org:</b>
<select name="type" id="type_name" ><br>
<option value="Student">Student</option>
<option value="Teller">Teller</option>
<option value="Admin">Admin</option>
</select>
</center>
<center><h3 style="color:red;background-color:yellow;"><?php echo $msg ?></h3></center><br>
<input id="boton" type="submit" name="submit">
</form>
</div>
</body>
</html>