1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<div id="editStudentDetails" class="popup">
<h2 class="popupHeader">Edit Student Details</h2>
<form action="<?=base_url();?>ViewStudentsController/editStudentDetails" method="post">
<ul>
<li>
<label>Username</label>
<span id="usernameDisplay">Username</span>
<input type="hidden" id="username" name="username">
</li>
<li>
<label for="studentName">Student Name:</label>
<input type="text" class="text" name="studentName" id="studentName">
</li>
<li>
<label for="studentEmail">Student E-mail:</label>
<input type="text" class="text" name="studentEmail" id="studentEmail">
</li>
</ul>
<div class="bottomMenu">
<button class="popupButton btn" type="submit">Confirm</button>
<button class="popupButton cancelButton btn">Cancel</button>
</div>
</form>
</div>
|