/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="addCourse" class="manageCoursePopup popup">
83.2.5 by elof.bigestans at gmail
* Updated ManageCourses, including JS+Jquery, popups, controller.
2
	<h2 class="popupHeader">Add Course</h2>
3
	<form action="<?=base_url();?>ManageCourses/addCourse" method="post">
4
		<ul>
5
			<li>
6
				<label for="addCourseID">Course Code:</label>
7
				<input type="text" class="text" name="addCourseID" id="addCourseID" placeHolder="Course Code">
8
			</li>
9
			<li>
10
				<label for="addCourseName">Course Name:</label>
11
				<input type="text" class="text" name="addCourseName" id="addCourseName" placeHolder="Course Name">
12
			</li>
13
			<li>
14
				<label for="addCourseData">Course Description:</label>
15
				<input type="text" class="text" name="addCourseData" id="addCourseData" placeHolder="Course Description">
16
			</li>
17
		</ul>
83.2.7 by elof.bigestans at gmail
Started work on normalizing popups. Lots to go.
18
		<div class="bottomMenu">
19
			<button class="popupButton btn" type="submit">Confirm</button>
20
			<button class="cancelButton popupButton btn">Cancel</button>
83.2.5 by elof.bigestans at gmail
* Updated ManageCourses, including JS+Jquery, popups, controller.
21
		</div>
22
	</form>
23
</div>