Melies/editor/public/edit/index.html

61 lines
1.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Edit</title>
<link rel="stylesheet" href="/static/css/base.css">
<link rel="stylesheet" href="/static/css/edit.css">
<script src="/static/js/edit.mjs" type="module"></script>
</head>
<body>
<header id="topbar">
<nav>
</nav>
</header>
<aside id="toolbar">
</aside>
<main id="main">
<h1>Edit <code id="filename"></code><span id="unsaved"> - Unsaved</span></h1>
<div class="fields">
<div class="field">
<label for="title">Title</label>
<input type="text" id="title" name="title">
</div>
</div>
<div class="audio">
<h3>Audio Tracks</h3>
<table id="audio-tracks">
<thead>
<tr></tr>
</thead>
<tbody></tbody>
</table>
</div>
<div class="table">
<h3>Subtitle Tracks</h3>
<table id="subtitle-tracks">
<thead>
<tr></tr>
</thead>
<tbody></tbody>
</table>
</div>
</main>
<div class="popup" id="subtitle-integrity">
<div class="container">
<h3 class="title">Subtitle Track Integrity</h3>
<p id="st-integrity-desc"></p>
<div class="original">
<label for="st-integrity-og">Original Value</label>
<input type="text" disabled id="st-integrity-og">
</div>
<div class="correction">
</div>
</div>
</div>
</body>
</html>