mirror of
https://github.com/jlengrand/checkoutCreate.git
synced 2026-03-10 08:11:18 +00:00
18 lines
566 B
HTML
18 lines
566 B
HTML
{% extends "layout.html" %}
|
|
|
|
{% block title %}Page Not Found{% endblock %}
|
|
|
|
{% block content %}
|
|
<p/>
|
|
<p/>
|
|
<title>Error</title>
|
|
|
|
<div class="status-container">
|
|
<div class="status">
|
|
<p class="status-message">Error!</p>
|
|
<p class="status-message">Review response in console and refer to <a
|
|
href="https://docs.adyen.com/development-resources/response-handling">Response handling.</a></p>
|
|
<a class="button" href="{{ url_for('home') }}">Return Home</a>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |