party-upload: use song.title if it exists
[clinton/unknownlamer-kodi-addons.git] / party-upload / upload.html
CommitLineData
a823df94
CE
1<!DOCTYPE html>
2<html>
3 <head>
4 <style>
5 body { font-family: sans-serif; }
6 input[type=file], input[type=submit] { height: 20em; width:
7 100%; font-size: 200%; background-color: steelblue;}
8 button { font-size: 400%; background-color: slategray; border: 0px
9 solid black; border-radius: 10px; width: 95%; display: block;
10 margin: 2rem auto; }
11
12 label[for=asap] { font-size: 350%; }
ff8084a2 13 input[type=checkbox] { transform: scale(2.5); margin-right: 2em; }
a823df94
CE
14 </style>
15 </head>
16 <body>
51a600c2 17 <form action="normals.cgi" method="post" enctype="multipart/form-data">
a823df94 18 <p>
51a600c2
CE
19 <input name="song" type="file" accept="audio/*"
20 required="required" />
a823df94 21 <!-- <input type="submit" value="Party On!" /> -->
51a600c2 22 <button name="uploadgo" type="submit">Party On!</button>
a823df94
CE
23 <input type="checkbox" value="faster" name="asap" />
24 <label for="asap">nnooowww</label>
25 </p>
26 </form>
27 </body>
28</html>