manimator / templates /result.html
theminji's picture
update results.html for better consistency
f5cf489 verified
raw
history blame contribute delete
805 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Manimator - Your Video is Ready!</title>
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
</head>
<body>
<header>
<h1>Manimator</h1>
<p>Your AI-powered video generator</p>
</header>
<div class="container">
<h2>Your Generated Video</h2>
{% if error %}
<p class="error">{{ error }}</p>
{% else %}
<video width="100%" height="auto" controls>
<source src="{{ video_url }}" type="video/mp4">
Your browser does not support the video tag.
</video>
{% endif %}
<br>
<a class="btn" href="{{ url_for('index') }}">Submit Another Prompt</a>
</div>
</body>
</html>