-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.html
More file actions
26 lines (26 loc) · 840 Bytes
/
app.html
File metadata and controls
26 lines (26 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>ExList</title>
<link rel='stylesheet' href='app.css' type='text/css'>
</head>
<body>
<h1>ExList</h1>
<h2>Export Playlist</h2>
<button value="Scroll" id="bsdown"></button>
<button value="Export" id="beplay"></button>
<input type="checkbox" name="Ename" id="cexti">
<label for="Ename">Export Titles (Doesn't import)</label>
<h2>Import Playlist</h2>
<div class="formcontainer">
<input type="file" id="inputfile" accept=".csv, .txt" name="inputfile">
<label for="inputfile">Exported Playlist</label>
<input type="text" id="listname" placeholder="Playlist name">
<button value="Start Import" id="bstarti"></button>
</div>
<footer>Made by Pacifiky</footer>
<script src="main.js">
</body>
</html>