-
Notifications
You must be signed in to change notification settings - Fork 0
/
create_course.php
32 lines (29 loc) · 1.03 KB
/
create_course.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
<!DOCTYPE html>
<html>
<head>
<title>Create Course</title>
<link rel="stylesheet" type="text/css" href="create_course_styles.css">
</head>
<body>
<div class="container">
<h2>Create a New Course</h2>
<form action="add_course.php" method="post">
<div class="form-group">
<label for="department">Department:</label>
<input type="text" name="department" id="department" required>
</div>
<div class="form-group">
<label for="course_name">Course Name:</label>
<input type="text" name="course_name" id="course_name" required>
</div>
<div class="form-group">
<label for="course_code">Course Code:</label>
<input type="text" name="course_code" id="course_code" required>
</div>
<button type="submit" class="btn">Add Course</button>
</form>
<br>
<a href="admin_panel.php" class="btn">Back to Admin Panel</a>
</div>
</body>
</html>