forked from KelvinTegelaar/CIPP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AutopilotProfileList.html
74 lines (71 loc) · 3.18 KB
/
AutopilotProfileList.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
<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>
Autopilot Profile
</h1>
</div>
<div class="col-12 col-xl-auto mb-3">
<a class="btn btn-sm btn-light text-primary" href="index.html?page=users.html">
<i class="me-1" data-feather="users"></i>
Manage Users
</a>
<a class="btn btn-sm btn-light text-primary" href="user-management-add-user.html">
<i class="me-1" data-feather="user-plus"></i>
Add new Autopilot Profile
</a>
</div>
</div>
</div>
</div>
</header>
<!-- Main page content-->
<div class="container-fluid px-4">
<div><label for="exampleDataList" class="form-label">Tenant Selector</label>
<input class="form-control" list="datalistOptions" id="exampleDataList" placeholder="Type to search..."
style="width: 50%;" oninput='onInput()'>
<datalist id="datalistOptions">
<option value="Select a tenant" text="Select a tenant">
</datalist>
</div><br>
<div class="card">
<div class="card-header">Autopilot Profile list</div>
<div class="card-body">
<table id="datatablesSimple">
<table cellpadding="0" cellspacing="0" class="datatable-1 table table-striped" width="100%">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
<th>Language</th>
<th>Convert to autopilot</th>
<th>Name Template</th>
<th>Actions</th>
</tr>
</thead>
<tbody id='AccountTable'>
</tbody>
<tfoot>
<tr>
<th>Name</th>
<th>Description</th>
<th>Language</th>
<th>Convert to autopilot</th>
<th>Name Template</th>
<th>Actions</th>
</tr>
</tfoot>
</table>
</div>
</div>
</div>
</main>
<script src="js/datatables/jquery.dataTables.js"></script>
<script src="js/tenantlist.js"></script>
<script src="js/datatables/datatablesAutopilotConfig.js"></script>
</body>
</html>