-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
36 lines (33 loc) · 891 Bytes
/
index.html
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
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Reproductor</title>
<link rel="stylesheet" href="/css/main.css" />
</head>
<body>
<div class="app">
<div class="contenedor-izquierdo">
<ul class="lista-canciones">
<li class="cancion">
Cancion 1
</li>
<li class="cancion">
Cancion 2
</li>
</ul>
</div>
<div class="contenedor-derecho">
<audio class="audio" controls></audio>
</div>
<form class="upload-form" action="/canciones" method="POST" enctype="multipart/form-data">
Subir canción:
<input type="file" name="cancion" />
<input type="submit" value="Subir">
</form>
</div>
<script src="/jquery/jquery.js"></script>
<script src="/js/main.js"></script>
</body>
</html>