/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk
83.2.18 by elof.bigestans at gmail
SHIT!
1
<div id="editStudentDetails" class="popup">
2
	<h2 class="popupHeader">Edit Student Details</h2>
3
	<form action="<?=base_url();?>ViewStudentsController/editStudentDetails" method="post">
4
		<ul>
5
			<li>
6
				<label>Username</label>
7
				<span id="usernameDisplay">Username</span>
8
				<input type="hidden" id="username" name="username">
9
			</li>
10
			<li>
11
				<label for="studentName">Student Name:</label>
12
				<input type="text" class="text" name="studentName" id="studentName">
13
			</li>
14
			<li>
15
				<label for="studentEmail">Student E-mail:</label>
16
				<input type="text" class="text" name="studentEmail" id="studentEmail">
17
			</li>
18
		</ul>
19
		<div class="bottomMenu">
20
			<button class="popupButton btn" type="submit">Confirm</button>
21
			<button class="popupButton cancelButton btn">Cancel</button>
22
		</div>
23
	</form>
24
</div>