-
Notifications
You must be signed in to change notification settings - Fork 1
/
create.txt
80 lines (71 loc) · 2.4 KB
/
create.txt
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
</form>
<table class="table table-hover">
<thead>
<tr>
<th>Id</th>
<th>Name</th>
<th>Age</th>
<th>Height</th>
<th>Cnic</th>
<th></th>
</tr>
</thead>
<tbody id="stdbody">
</tbody>
</table>
<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Edit Person</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<form>
<div class="form-group row">
<lable class="col-sm-2 col-form-lable">id</lable>
<div class="col-sm-10">
<input type="text" class="form-control" id="eid" placeholder="Id">
</div>
</div>
<div class="form-group row">
<lable class="col-sm-2 col-form-lable">Name</lable>
<div class="col-sm-10">
<input type="text" class="form-control" id="ename" placeholder="Name">
</div>
</div>
<div class="form-group row">
<lable class="col-sm-2 col-form-lable">Age</lable>
<div class="col-sm-10">
<input type="text" class="form-control" id="eage" placeholder="Age">
</div>
</div>
<div class="form-group row">
<lable class="col-sm-2 col-form-lable">Height</lable>
<div class="col-sm-10">
<input type="text" class="form-control" id="eheight" placeholder="Height">
</div>
</div>
<div class="form-group row">
<lable class="col-sm-2 col-form-lable">CNIC</lable>
<div class="col-sm-10">
<input type="text" class="form-control" id="ecnic" placeholder="CNIC">
</div>
</div>
<div class="form-group row">
<div class="col-sm-2"></div>
<div class="col-sm-10">
<button type="button" class="btn btn-primary" id="addbtn">Add Person</button>
</div>
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" id="updateButton" class="btn btn-primary">Update changes</button>
</div>
</div>
</div>
</div>