/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk
83.2.7 by elof.bigestans at gmail
Started work on normalizing popups. Lots to go.
1
<div id="editCourse" class="manageCoursePopup popup">
83.2.5 by elof.bigestans at gmail
* Updated ManageCourses, including JS+Jquery, popups, controller.
2
	<h2 class="popupHeader">Edit Course</h2>
3
	<form action="<?=base_url();?>ManageCourses/editCourse" method="post">
4
		<ul>
5
			<li>
6
				<label for="editCourseID">Course Code:</label>
7
				<span>Course Code</span>
8
				<input type="hidden" id="editCourseID" name="editCourseID">
9
			</li>
10
			<li>
11
				<label for="editCourseName">Course Name:</label>
12
				<input type="text" class="text" name="editCourseName" id="editCourseName">
13
			</li>
14
			<li>
15
				<label for="editCourseData">Course Description:</label>
16
				<input type="text" class="text" name="editCourseData" id="editCourseData">
17
			</li>
18
		</ul>
83.2.7 by elof.bigestans at gmail
Started work on normalizing popups. Lots to go.
19
		<div class="bottomMenu">
20
			<button class="popupButton btn" type="submit">Confirm</button>
21
			<button class="popupButton cancelButton btn">Cancel</button>
83.2.5 by elof.bigestans at gmail
* Updated ManageCourses, including JS+Jquery, popups, controller.
22
		</div>
23
	</form>
24
</div>