-
Notifications
You must be signed in to change notification settings - Fork 1
/
x.html
47 lines (42 loc) · 1.61 KB
/
x.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>TA System</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="CSS/homePage.css" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body class="body">
<div class="container">
<div class="page-header">
<img src="images/cs_logo.png"> <h1>TA Application System</h1>
</div>
<form action = "main.php" method="post">
<div class="form-group">
<input type="submit" name="Student" value="Student" class="form-control">
</div>
<div class="form-group">
<input type="submit" name="Professor" value="Faculty" class="form-control">
</div>
<div class="form-group">
<input type="submit" name="Admin" value="Admin" class="form-control">
</div>
</form>
<hr>
<footer>
<strong>Email:</strong> [email protected] <br>
<strong>Phone:</strong> (301) 405-2672
</footer>
</div>
<script
src="http://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous">
</script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</body>
</html>