Skip to content

Commit 2a2a762

Browse files
authored
[APT-1931] Added new error pages (#734)
* [APT-1931] Added new error pages These pages will be used for the checkout process. In case of customer errors - we will redirect to one of these two pages. * Remove slug so that all the error page look correct * Styling updates.
1 parent db71dc5 commit 2a2a762

File tree

2 files changed

+58
-0
lines changed

2 files changed

+58
-0
lines changed

pages/charge-failed/index.html

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
layout: default
3+
title: Payment Incomplete
4+
excerpt: We were unable to create your subscription.
5+
permalink: /charge-failed/
6+
---
7+
8+
<div class="main">
9+
<div class="section section-hero">
10+
<div class="container">
11+
<div class="row">
12+
<div class="col-xs-offset-2 col-xs-8 text-center">
13+
<h1>{{ page.title }}</h1>
14+
<p><b>{{ page.excerpt }}</b></p>
15+
<p>
16+
A member of the Gruntwork sales team will reach out soon to
17+
coordinate payment and activate your subscription.
18+
</p>
19+
<a href="/" class="btn btn-info" role="button"
20+
>Go to the Gruntwork home page</a
21+
>
22+
</div>
23+
</div>
24+
</div>
25+
</div>
26+
</div>

pages/payment-incomplete/index.html

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
layout: default
3+
title: Payment Incomplete
4+
excerpt: We were unable to create your subscription.
5+
permalink: /payment-incomplete/
6+
---
7+
8+
<div class="main">
9+
<div class="section section-hero">
10+
<div class="container">
11+
<div class="row">
12+
<div class="col-xs-offset-2 col-xs-8 text-center">
13+
<h1>{{ page.title }}</h1>
14+
<p><b>{{ page.excerpt }}</b></p>
15+
<p>
16+
Please ensure you've entered your payment information correctly, or
17+
reach out to
18+
<a href="mailto:[email protected]">[email protected]</a> if you
19+
need assistance.
20+
</p>
21+
<a
22+
href="#"
23+
onclick="window.history.back()"
24+
class="btn btn-info"
25+
role="button"
26+
>Back to checkout</a
27+
>
28+
</div>
29+
</div>
30+
</div>
31+
</div>
32+
</div>

0 commit comments

Comments
 (0)