forked from Kashish-gitt/wdmc-adm-panel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPageWrapper.html
124 lines (121 loc) · 6.51 KB
/
PageWrapper.html
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!-- page wrapper div -->
<div id="page-wrapper">
<div class="row">
<div class="col-lg-12">
<div class="panel panel-default">
<div class="panel-heading">
<h3>Add Content</h3>
</div>
<div class="panel-body">
<div class="row">
<div class="col-lg-6">
<form role="form" id="addForm">
<div class="form-group">
<label>Title</label>
<input class="form-control" placeholder="Enter Title" id="addtitle" name="title" /><br />
<label>Text</label>
<input class="form-control" placeholder="Enter Text" id="addtext" name="text" /><br />
<label>link</label>
<input class="form-control" placeholder="Enter Link" id="addlink" name="link" /><br />
<label>Source Name</label>
<input class="form-control" value="Webmaster" placeholder="Name" id="addname" name="name" /><br />
<label>Source E-mail</label>
<input class="form-control" value="[email protected]" placeholder="E-mail" id="addemail" name="email" /><br />
<label>Source Designation</label>
<input class="form-control" value="Webmaster" placeholder="Designation" id="adddesignation" name="designation" /><br />
<label>Source Department</label>
<input class="form-control" value="Webmaster" placeholder="Department" id="adddepartment" name="department" /><br />
<label>Content Image</label>
<input class="form-control" type="file" value="upload" id="adduserfile" name="userfile" />
<br />
</div>
<button type="submit" name="action" class="btn btn-default">Insert</button>
</form>
</div>
</div>
<!-- row (nested) -->
</div>
<!-- panel-body -->
</div>
<!--panel -->
</div>
<!--col-lg-12 -->
</div>
<div class="row">
<div class="col-lg-12">
<div class="panel panel-default">
<div class="panel-heading">
<h3>Edit</h3>
</div>
<div class="panel-body">
<div class="row">
<div class="col-lg-6">
<form role="form" id="editForm">
<div class="form-group">
<label>id</label>
<input class="form-control" placeholder="Enter id" id="editid" name="id" /><br />
<label>Title</label>
<input class="form-control" placeholder="Enter Title" id="edittitle" name="title" /><br />
<label>Text</label>
<input class="form-control" placeholder="Enter Text" id="edittext" name="text" /><br />
<label>Link</label>
<input class="form-control" placeholder="Enter Link" id="editlink" name="link" /><br />
<label>Source Name</label>
<input class="form-control" value="Webmaster" placeholder="Name" id="editname" name="name" /><br />
<label>Source E-mail</label>
<input class="form-control" value="[email protected]" placeholder="E-mail" id="editemail" name="email" /><br />
<label>Source Designation</label>
<input class="form-control" value="Webmaster" placeholder="Designation" id="editdesignation" name="designation" /><br />
<label>Source Department</label>
<input class="form-control" value="Webmaster" placeholder="Department" id="editdepartment" name="department" /><br />
<label>Content Image</label>
<input class="form-control" type="file" value="upload" id="edituserfile" name="userfile" />
<br />
</div>
<button type="submit" class="btn btn-default">Insert</button>
</form>
</div>
<!-- col-lg-6 (nested) -->
</div>
<!-- row (nested) -->
</div>
<!-- panel-body -->
</div>
<!-- panel -->
</div>
<!--col-lg-12 -->
</div>
<div class="panel-body">
<div class="dataTable_wrapper">
<table class="table table-striped table-bordered table-hover" id="dataTables-example_n">
<thead>
<tr>
<th>ID</th>
<th>Content Title</th>
<th>Content Text</th>
<th>link</th>
<th>Date</th>
<th>UpdateDate</th>
<th>Source</th>
<th>options</th>
</tr>
</thead>
<tbody id="tablebody">
<tr>
<td>1</td>
<td>title</td>
<td>text</td>
<td>link</td>
<td>date</td>
<td>updateDate</td>
<td>
<button type="button" class="btn btn-success btn-xs">View</button>
<button type="button" class="btn btn-primary btn-xs">Edit</button>
<button type="button" class="btn btn-danger btn-xs">Delete</button>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>