forked from derbear/bellbook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnewCourse.php
More file actions
33 lines (32 loc) · 1.01 KB
/
Copy pathnewCourse.php
File metadata and controls
33 lines (32 loc) · 1.01 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
<? require("util/header.php");
connect(true);
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" type="text/css" href="style.css" />
<title>Add a Course</title>
</head>
<body>
<? print_header(); ?>
<div id="content-title"><h2>Add a course</h2></div>
<div>
<form action="util/addCourse.php" method="post" >
<table>
<tr>
<td><label for="courseId"> Name: </label></td>
<td><input type="text" name="courseId" id="courseId" /></td>
</tr>
</table>
<input type="submit" name="Submit" value="Submit" id="submit" />
</form>
</div>
<? require("util/footer.php"); ?>
</body>
</html>
<!--
Authors: Derek Leung
Project BellBook - 1.0
Bellarmine College Preparatory, 2011
-->