forked from hestiacp/hestiacp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist_server_preview.php
More file actions
44 lines (39 loc) · 1.41 KB
/
list_server_preview.php
File metadata and controls
44 lines (39 loc) · 1.41 KB
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
<!-- Begin toolbar -->
<div class="toolbar">
<div class="toolbar-inner">
<div class="toolbar-buttons">
<a href="/edit/server/" class="button button-secondary button-back js-button-back">
<i class="fas fa-arrow-left icon-blue"></i><?= _("Back") ?>
</a>
</div>
</div>
</div>
<!-- End toolbar -->
<div class="container">
<h1 class="u-text-center u-hide-desktop u-mt20 u-pr30 u-mb20 u-pl30"><?= _("Preview Features") ?></h1>
<div class="units-table js-units-container">
<div class="units-table-header">
<div class="units-table-cell"></div>
<div class="units-table-cell"><?= _("Category") ?></div>
<div class="units-table-cell"><?= _("Name") ?></div>
<div class="units-table-cell"><?= _("Status") ?></div>
</div>
<div class="units-table-row js-unit">
<div class="units-table-cell u-text-center-desktop">
<i class="fas fa-gear icon-blue"></i>
</div>
<div class="units-table-cell units-table-heading-cell u-text-bold">
<span class="u-hide-desktop"><?= _("Category") ?>:</span>
<?= _("System") ?>
</div>
<div class="units-table-cell u-text-bold">
<span class="u-hide-desktop"><?= _("Name") ?>:</span>
<?= _("Policy") ?>: <?= _("Allow suspended users to log in with read-only access") ?>
</div>
<div class="units-table-cell">
<span class="u-hide-desktop u-text-bold"><?= _("Status") ?>:</span>
<?= _("Partially implemented") ?>
</div>
</div>
</div>
</div>