ai / app /templates /index.html
gtfgffg's picture
Upload 7 files
8a93ca3 verified
<!doctype html>
<html lang="fa" dir="rtl">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>FlexCut — تدوین هوشمند ویدیو (وب)</title>
<link rel="stylesheet" href="/static/style.css" />
</head>
<body>
<div class="container">
<h1>FlexCut — تدوین هوشمند ویدیو (تحت وب)</h1>
<p class="muted">لطفاً preset را انتخاب کنید و فایل‌ها را آپلود کنید. سپس روی «ساخت ویدیو» بزنید.</p>
<form method="post" action="/create" enctype="multipart/form-data" class="card">
<fieldset>
<legend>۱) انتخاب Preset</legend>
<label class="radio">
<input type="radio" name="preset" value="reels_fast_9x16" checked>
Reels Fast 20s (9:16)
</label>
<label class="radio">
<input type="radio" name="preset" value="showreel_16x9">
Showreel 45s (16:9)
</label>
<label class="radio">
<input type="radio" name="preset" value="dual_export">
Dual Export (9:16 + 16:9)
</label>
</fieldset>
<fieldset>
<legend>۲) آپلود فایل‌ها</legend>
<label>موزیک (mp3/wav): <input type="file" name="music" accept=".mp3,.wav" /></label>
<label>ویدیو (mp4/mov): <input type="file" name="video" accept=".mp4,.mov" /></label>
<label>لوگو (PNG، اختیاری): <input type="file" name="logo" accept=".png" /></label>
</fieldset>
<button type="submit" class="primary">ساخت ویدیو</button>
</form>
<p class="tiny muted">این نسخه فقط فایل‌ها را ذخیره می‌کند تا مطمئن شویم Space به‌درستی بالا می‌آید. سپس منطق تدوین را اضافه می‌کنیم.</p>
</div>
</body>
</html>