-
Notifications
You must be signed in to change notification settings - Fork 65
/
error.tpl
38 lines (31 loc) · 1.2 KB
/
error.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
30
31
32
33
34
35
36
37
38
{include file="orderforms/standard_cart/common.tpl"}
<div id="order-standard_cart">
<div class="row">
<div class="cart-sidebar">
{include file="orderforms/standard_cart/sidebar-categories.tpl"}
</div>
<div class="cart-body">
<div class="header-lined">
<h1 class="font-size-36">
{$LANG.thereisaproblem}
</h1>
</div>
{include file="orderforms/standard_cart/sidebar-categories-collapsed.tpl"}
<div class="alert alert-danger error-heading">
<i class="fas fa-exclamation-triangle"></i>
{$errortitle}
</div>
<div class="row">
<div class="col-sm-8 col-sm-offset-2 offset-sm-2">
<p class="margin-bottom">{$errormsg}</p>
<div class="text-center">
<a href="javascript:history.go(-1)" class="btn btn-default">
<i class="fas fa-arrow-left"></i>
{$LANG.problemgoback}
</a>
</div>
</div>
</div>
</div>
</div>
</div>