|
<!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 Manim 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>
|
|
|