Add cards for security and sync pages

V2_Rewrite
Skylar Ittner 6 years ago
parent bc7d7cd313
commit e321b84434

@ -5,5 +5,7 @@
"Manage users, permissions, and security": "Manage users, permissions, and security", "Manage users, permissions, and security": "Manage users, permissions, and security",
"Checkout customers and manage online orders": "Checkout customers and manage online orders", "Checkout customers and manage online orders": "Checkout customers and manage online orders",
"Build websites and manage contact form messages": "Build websites and manage contact form messages", "Build websites and manage contact form messages": "Build websites and manage contact form messages",
"Track jobs and assigned tasks": "Track jobs and assigned tasks" "Track jobs and assigned tasks": "Track jobs and assigned tasks",
"Change password, setup 2-factor, and change Station PIN": "Change password, setup 2-factor, and change Station PIN",
"Connect mobile devices to AccountHub": "Connect mobile devices to AccountHub"
} }

@ -29,18 +29,18 @@
?> ?>
</div> </div>
<div class="mobile-app-hide row mt-4"> <div class="row mt-4">
<?php <?php
foreach (EXTERNAL_APPS as $a) { foreach (EXTERNAL_APPS as $a) {
if (!isset($a['card'])) { if (!isset($a['card'])) {
continue; continue;
} }
?> ?>
<div class="col-12 col-sm-6 col-md-4 mb-4"> <div class="col-12 col-sm-6 col-md-4 mb-4 mobile-app-hide">
<div class="card bg-<?php echo $a['card']['color']; ?> h-100"> <div class="card bg-<?php echo $a['card']['color']; ?> h-100">
<div class="card-body align-middle"> <div class="card-body align-middle">
<a href="<?php echo $a['url']; ?>" class="row align-items-center h-100 text-<?php echo (empty($a['card']['text']) ? "light" : $a['card']['text']) ?>"> <a href="<?php echo $a['url']; ?>" class="row align-items-center h-100 text-<?php echo (empty($a['card']['text']) ? "light" : $a['card']['text']) ?>">
<div class="col-4 col-sm-4"> <div class="col-4">
<img class="img-fluid" src="<?php <img class="img-fluid" src="<?php
if (strpos($a['icon'], "http") !== 0) { if (strpos($a['icon'], "http") !== 0) {
echo $a['url'] . $a['icon']; echo $a['url'] . $a['icon'];
@ -49,7 +49,7 @@
} }
?>"/> ?>"/>
</div> </div>
<div class="col-12 col-sm-8"> <div class="col-8">
<span class="h5 font-weight-normal"><?php echo $a['title']; ?></span><br /> <span class="h5 font-weight-normal"><?php echo $a['title']; ?></span><br />
<?php $Strings->get($a['card']['string']); ?> <?php $Strings->get($a['card']['string']); ?>
</div> </div>
@ -60,4 +60,34 @@
<?php <?php
} }
?> ?>
<div class="col-12 col-sm-6 col-md-4 mb-4">
<div class="card bg-orange h-100">
<div class="card-body align-middle">
<a href="./app.php?page=security" class="row align-items-center h-100 text-dark">
<div class="col-4 text-center">
<i class="fas fa-lock fa-4x"></i>
</div>
<div class="col-8">
<span class="h5 font-weight-normal"><?php $Strings->get("account security"); ?></span><br />
<?php $Strings->get("Change password, setup 2-factor, and change Station PIN"); ?>
</div>
</a>
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-md-4 mb-4">
<div class="card bg-orange h-100">
<div class="card-body align-middle">
<a href="./app.php?page=sync" class="row align-items-center h-100 text-dark">
<div class="col-4 text-center">
<i class="fas fa-sync fa-4x"></i>
</div>
<div class="col-8">
<span class="h5 font-weight-normal"><?php $Strings->get("sync"); ?></span><br />
<?php $Strings->get("Connect mobile devices to AccountHub"); ?>
</div>
</a>
</div>
</div>
</div>
</div> </div>
Loading…
Cancel
Save