28 lines
1,018 B
HTML
28 lines
1,018 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title></title>
|
|
<link href="style.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<div id="app">
|
|
<div id="title">
|
|
<span>schedule designer <span id="version">v0</span></span>
|
|
<span>made with ♥ by ari melody</span>
|
|
</div>
|
|
<div id="schedule">
|
|
</div>
|
|
<div id="actions">
|
|
<button type="submit" id="import">Import</button>
|
|
<button type="submit" id="save">Save Schedule</button>
|
|
<button type="submit" id="clipboard" disabled>Copy to Clipboard</button>
|
|
<button type="submit" id="save-image" disabled>Save Image</button>
|
|
<button type="submit" id="export">Export</button>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="main.js" type="module"></script>
|
|
</body>
|
|
</html>
|