This repository has been archived on 2024-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
NG_2023_Video/templates/success.html

17 lines
375 B
HTML
Raw Normal View History

2023-06-06 15:18:12 +00:00
<!DOCTYPE html>
<html lang="en">
2023-06-15 18:04:28 +00:00
2023-06-06 15:18:12 +00:00
<head>
<title>Video upload</title>
</head>
2023-06-15 18:04:28 +00:00
2023-06-06 15:18:12 +00:00
<body>
<p>The modified video was sent to your email address. You can upload another one if you want to.</p>
{% if error %}
<p>The following errors occurred:<br>
2023-06-15 18:04:28 +00:00
{{ error | safe }}</p>
2023-06-06 15:18:12 +00:00
{% endif %}
<p><a href="index.html">Upload another video</a></p>
</body>
2023-06-15 18:04:28 +00:00
</html>