-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
72 lines (49 loc) · 2.21 KB
/
index.php
File metadata and controls
72 lines (49 loc) · 2.21 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> CPIS System for farmingdale students</title>
<meta name = "description" content = "Check out what is going on with the cpis department at farmingdale">
<meta name="author" content="cpis.com">
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" media="(min-width:1200px)" href="css/index-desktop.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="js/index.js"></script>
</head>
<body>
<div id="wrapper">
<a href="tutor_signup.php"> Tutor Sign Up page </a>
<div id="header">
<p>Farmingdale CPIS</p>
<p> Pick what you are and log in below</p>
</div>
<div id="selection">
<div id="student-btn" class="selection-btn"> Student </div>
<form method="POST" id="student" action="login.php">
<label for="username">Username</label>
<input type="text" class="text-input" name="username">
<label for="password">Password</label>
<input type="password" class="text-input" name="password">
<button type="submit" class="submit-btn" name="student-btn">Login</button>
</form>
<div id="faculty-btn" class="selection-btn"> Advisor </div>
<form method="POST" id="faculty" action="login.php">
<label for="username">Username</label>
<input type="text" class="text-input" name="username">
<label for="password">Password</label>
<input type="password" class="text-input" name="password">
<button type="submit" class="submit-btn" name="faculty-btn">Login</button>
</form>
<div id="tutor-btn" class="selection-btn"> Tutor </div>
<form method="POST" id="tutor" action="login.php">
<label for="username">Username</label>
<input type="text" class="text-input" name="username">
<label for="password">Password</label>
<input type="password" class="text-input" name="password">
<button type="submit" class="submit-btn" name="tutor-btn">Login</button>
</form>
</div>
</div>
</body>
</html>