forked from KelvinTegelaar/CIPP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tenants.html
75 lines (71 loc) · 3.13 KB
/
tenants.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
<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>
Tenant Management List
</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="index.html?page=groups.html">
<i class="me-1" data-feather="user-plus"></i>
Manage Groups
</a>
</div>
</div>
</div>
</div>
</header>
<!-- Main page content-->
<div class="container-fluid px-4">
<div class="card">
<div class="card-header">Tenants</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>Default Domain</th>
<th>M365 Portal</th>
<th>Exchange Portal</th>
<th>AAD Portal</th>
<th>Teams Portal</th>
<th>Azure Portal</th>
<th>MEM (Intune) Portal</th>
<th>Actions</th>
<th>Domains</th>
</tr>
</thead>
<tbody id='AccountTable'>
</tbody>
<tfoot>
<tr>
<th>Name</th>
<th>Default Domain</th>
<th>M365 Portal</th>
<th>Exchange Portal</th>
<th>AAD Portal</th>
<th>Teams Portal</th>
<th>Azure Portal</th>
<th>MEM (Intune) Portal</th>
<th>Actions</th>
<th>Domains</th>
</tr>
</tfoot>
</table>
</div>
</div>
</div>
</main>
<script src="js/datatables/jquery.dataTables.js"></script>
<script src="js/datatables/datatablestenants.js"></script>
</body>
</html>