forked from KelvinTegelaar/CIPP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogs.html
104 lines (100 loc) · 4.88 KB
/
logs.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
<main>
<header class="page-header page-header-compact page-header-light border-bottom bg-white mb-4">
<div class="container-fluid px-4">
<div class="page-header-content">
<div class="row align-items-center justify-content-between pt-3">
<div class="col-auto mb-3">
<h1 class="page-header-title">
<div class="page-header-icon"><i data-feather="user"></i></div>
CIPP Logs
</h1>
</div>
</div>
</div>
</div>
</header>
<!-- Main page content-->
<div class="container-fluid px-4">
<div class="col-xl-3">
<div class="card card-collapsable">
<a class="card-header" href="#collapseCardExample" data-bs-toggle="collapse" role="button"
aria-expanded="true" aria-controls="collapseCardExample">Search parameters
<div class="card-collapsable-arrow">
<i class="fas fa-chevron-down"></i>
</div>
</a>
<div class="collapse show" id="collapseCardExample">
<div class="card-body">
<form method="GET" action="/index.html">
<input type="hidden" value="logs" name="page">
<!-- Form Group (email address)-->
<div class="row gx-3 mb-3">
<!-- Form Group (first name)-->
<div class="col-mb-3">
<label class="small mb-1" for="User">User</label>
<input class="form-control" id="User" type="text" placeholder="Wildcards Allowed"
value="" name="User" />
</div>
<!-- Form Group (last name)-->
<div class="col-mb-3">
<label class="small mb-1" for="Severity">Severity</label>
<input class="form-control" id="Severity" type="text"
placeholder="Debug,Info,Warn,Error,Critical" value="" name="Severity" />
</div>
</div>
<!-- Form Group (Group Selection Checkboxes)-->
<div class="col-md-6">
<label for="DateFilter">Logfile</label><select style="width: 70px" class="form-control"
id="DateFilter" name="DateFilter">
<option value="102021">10-21</option>
<option value="112021">11-21</option>
<option value="122021">12-21</option>
<option value="012022">01-22</option>
<option value="022022">02-22</option>
<option value="032022">03-22</option>
</select>
</div>
<!-- Form Group (Roles)-->
<br>
<button class="btn btn-primary" type="submit">Search</button>
</form>
</div>
</div>
</div>
</div> <br>
<div class="card">
<div class="card-header">CIPP logbook</div>
<div class="card-body">
<table id="datatablesSimple">
<table cellpadding="0" cellspacing="0" class="datatable-1 table table-striped" width="100%">
<thead>
<tr>
<th>Date & Time</th>
<th>API</th>
<th>Tenant</th>
<th>Message</th>
<th>User</th>
<th>Severity</th>
</tr>
</thead>
<tbody id='AccountTable'>
</tbody>
<tfoot>
<tr>
<th>Date & Time</th>
<th>API</th>
<th>Tenant</th>
<th>Message</th>
<th>User</th>
<th>Severity</th>
</tr>
</tfoot>
</table>
</div>
</div>
</div>
</main>
<script src="js/datatables/jquery.dataTables.js"></script>
<script src="js/datatables/datatableslogs.js"></script>
</body>
</html>