-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadd_subject.php
executable file
·29 lines (23 loc) · 1.28 KB
/
add_subject.php
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
<div class="row">
<div class="col-xs-12 col-sm-12">
<form action="subject_action.php" autocomplete="off" method="POST">
<div class="form-group">
<label class="control-label" for="inputName"><b>Subject Name</b></label>
<div class="input-group">
<span class="input-group-addon"><i class="glyphicon glyphicon-exclamation-sign"></i></span>
<input class="form-control" data-error="Please enter name field." id="date" value="" placeholder="Enter Subject Name" type="text" name="name" required="" />
</div>
<div id="err_product_date" class="error"></div>
</div>
<div class="form-group">
<label class="control-label" for="inputName"><b>Subject Code</b></label>
<div class="input-group">
<span class="input-group-addon"><i class="glyphicon glyphicon-exclamation-sign"></i></span>
<input class="form-control" data-error="Please enter name field." id="date" value="" placeholder="Enter Subject Code" type="text" name="code" required="" />
</div>
<div id="err_product_date" class="error"></div>
</div>
<button class="btn btn-lg btn-primary btn-block" name="insert" type="submit"><span class="glyphicon glyphicon-floppy-save"></span> Save</button>
</form>
</div>
</div>