-
Notifications
You must be signed in to change notification settings - Fork 281
/
Copy pathaccess-denied.tpl
29 lines (29 loc) · 981 Bytes
/
access-denied.tpl
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
<div class="error-container">
<h1>{$LANG.oops}!</h1>
<p>{$LANG.subaccountpermissiondenied}</p>
{if !empty($allowedpermissions)}
<p>{$LANG.subaccountallowedperms}</p>
<div class="row">
<div class="col-sm-6 col-sm-offset-3">
<div class="well text-left">
<ul>
{foreach $allowedpermissions as $permission}
<li>{$permission}</li>
{/foreach}
</ul>
</div>
</div>
</div>
{/if}
<p>{$LANG.subaccountcontactmaster}</p>
<div class="buttons">
<a href="javascript:history.go(-1)" class="btn btn-primary btn-lg">
<i class="fas fa-arrow-circle-left"></i>
{$LANG.goback}
</a>
<a href="index.php" class="btn btn-default btn-lg">
<i class="fas fa-home"></i>
{$LANG.returnhome}
</a>
</div>
</div>