-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathINDEX.HTML
More file actions
56 lines (49 loc) · 1.62 KB
/
INDEX.HTML
File metadata and controls
56 lines (49 loc) · 1.62 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
INDEX.HTML
<!DOCTYPE html>
<html>
<head>
<title>CSUF Database Portal</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<header>
<h1>CSUF Database Portal</h1>
</header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Departments</a></li>
<li><a href="#">Courses</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<div class="container">
<div class="main">
<h2>Welcome to the CSUF Student and Faculty Database</h2>
<p>This portal stores and provides information about students and faculty members at California State University, Fullerton.</p>
</div>
<aside class="sidebar">
<h3>Quick Links</h3>
<p>Find additional resources and links here.</p>
</aside>
</div>
<form action="databases.php" method="POST">
<h2>Professor Information</h2>
<p>Enter the social security number of a professor:</p>
<input type="text" name="prof_ssn" />
<p>Enter a course number:</p>
<input type="text" name="course_num" />
<p>Enter a section number:</p>
<input type="text" name="section_num" />
<h2>Student Information</h2>
<p>Enter a course number to list sections:</p>
<input type="text" name="student_course_num" />
<p>Enter a student's campus-wide ID:</p>
<input type="text" name="student_cwid" />
<input type="submit" value="Submit" />
</form>
<footer>
<p>© 2023 California State University, Fullerton</p>
</footer>
</body>
</html>