neptune/core/templates/success.html

13 lines
349 B
HTML
Raw Normal View History

2022-07-21 12:45:28 +00:00
{% extends "base.html" %}
{% block content %}
2022-07-21 12:46:05 +00:00
<head>
<title>Thanks for your order!</title>
<link rel="stylesheet" href="style.css">
</head>
2022-07-21 12:45:28 +00:00
<section>
<p>We appreciate your business!</p>
<p>Download details will be available <a href="{{ url_for('main.profile') }} ">in your profile</a> shortly.</p>
</section>
{% endblock %}