fba.tpl
2.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
45
46
47
48
49
50
51
52
<?php echo $header; ?><?php echo $column_left; ?>
<div id="content">
<div class="page-header">
<div class="container-fluid">
<h1><?php echo $text_dashboard; ?></h1>
<ul class="breadcrumb">
<?php foreach ($breadcrumbs as $breadcrumb) { ?>
<li><a href="<?php echo $breadcrumb['href']; ?>"><?php echo $breadcrumb['text']; ?></a></li>
<?php } ?>
</ul>
</div>
</div>
<div class="container-fluid">
<?php if ($success) { ?>
<div class="alert alert-success"><i class="fa fa-check-circle"></i> <?php echo $success; ?></div>
<?php } ?>
<div class="row">
<div class="col-md-3 text-center">
<div class="well"> <a href="<?php echo $link_settings; ?>"> <span class="fa-stack fa-3x"> <i class="fa fa-square-o fa-stack-2x"></i> <i class="fa fa-wrench fa-stack-1x"></i> </span>
<h4><?php echo $text_heading_settings; ?></h4>
</a> </div>
</div>
<?php if ($validation == true) { ?>
<div class="col-md-3 text-center">
<div class="well"> <a href="<?php echo $link_account; ?>" target="_blank"> <span class="fa-stack fa-3x"> <i class="fa fa-square-o fa-stack-2x"></i> <i class="fa fa-user fa-stack-1x"></i> </span>
<h4><?php echo $text_heading_account; ?></h4>
</a> </div>
</div>
<div class="col-md-3 text-center">
<div class="well"> <a href="<?php echo $link_fulfillments; ?>"> <span class="fa-stack fa-3x"> <i class="fa fa-square-o fa-stack-2x"></i> <i class="fa fa-truck fa-stack-1x"></i> </span>
<h4><?php echo $text_heading_fulfillments; ?></h4>
</a> </div>
</div>
<div class="col-md-3 text-center">
<div class="well"> <a href="<?php echo $link_orders; ?>"> <span class="fa-stack fa-3x"> <i class="fa fa-square-o fa-stack-2x"></i> <i class="fa fa-truck fa-stack-1x"></i> </span>
<h4><?php echo $text_heading_orders; ?></h4>
</a> </div>
</div>
<?php } else { ?>
<div class="col-md-3 text-center">
<div class="well">
<a href="https://account.openbaypro.com/fba/apiregister/" target="_BLANK">
<span class="fa-stack fa-3x"> <i class="fa fa-square-o fa-stack-2x"></i> <i class="fa fa-star fa-stack-1x"></i> </span>
<h4><?php echo $text_heading_register; ?></h4>
</a>
</div>
</div>
<?php } ?>
</div>
</div>
</div>
<?php echo $footer; ?>