feat: add web editor base
This commit is contained in:
48
editor/public/edit/index.html
Normal file
48
editor/public/edit/index.html
Normal file
@ -0,0 +1,48 @@
|
||||
<!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="/base.css">
|
||||
<link rel="stylesheet" href="index.css">
|
||||
<script src="index.js"></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>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user