13 lines
349 B
HTML
13 lines
349 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<head>
|
|
<title>Thanks for your order!</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<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 %}
|