card wide
This commit is contained in:
parent
dceb9efd70
commit
45bc7aa1e2
|
|
@ -377,31 +377,33 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST') {
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<div class="card-row">
|
<div class="card-row">
|
||||||
<div class="service-label">
|
<div class="card-right">
|
||||||
<strong>Service</strong>
|
<div class="service-label">
|
||||||
|
<strong>Service</strong>
|
||||||
|
|
||||||
<?php if ($serviceEnabled): ?>
|
<?php if ($serviceEnabled): ?>
|
||||||
<span class="badge badge-enabled">Enabled</span>
|
<span class="badge badge-enabled">Enabled</span>
|
||||||
<?php else: ?>
|
<?php else: ?>
|
||||||
<span class="badge badge-disabled">Disabled</span>
|
<span class="badge badge-disabled">Disabled</span>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<form method="post" class="service-buttons">
|
||||||
|
<button type="submit" name="action" value="main_restart" class="btn-restart">
|
||||||
|
Restart
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<?php if ($serviceEnabled): ?>
|
||||||
|
<button type="submit" name="action" value="main_disable" class="btn-disable">
|
||||||
|
Disable
|
||||||
|
</button>
|
||||||
|
<?php else: ?>
|
||||||
|
<button type="submit" name="action" value="main_enable" class="btn-enable">
|
||||||
|
Enable
|
||||||
|
</button>
|
||||||
|
<?php endif; ?>
|
||||||
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<form method="post" class="service-buttons">
|
|
||||||
<button type="submit" name="action" value="main_restart" class="btn-restart">
|
|
||||||
Restart
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<?php if ($serviceEnabled): ?>
|
|
||||||
<button type="submit" name="action" value="main_disable" class="btn-disable">
|
|
||||||
Disable
|
|
||||||
</button>
|
|
||||||
<?php else: ?>
|
|
||||||
<button type="submit" name="action" value="main_enable" class="btn-enable">
|
|
||||||
Enable
|
|
||||||
</button>
|
|
||||||
<?php endif; ?>
|
|
||||||
</form>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
@ -676,7 +678,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST') {
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card">
|
<div class="card wide">
|
||||||
<h3>Output Links</h3>
|
<h3>Output Links</h3>
|
||||||
<?php echo $text; ?>
|
<?php echo $text; ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue