index.htm 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta name="description" content="ricettacolo omertoso">
  5. <meta name="keywords" content="file hosting sharing crypto vault">
  6. <meta name="author" content="esiliati.org">
  7. <link rel="stylesheet" href="{{url_for('static', filename='style.css')}}">
  8. <link rel="stylesheet" href="{{url_for('static', filename='zerbino.css')}}">
  9. <link rel="shortcut icon" href="/key-128.png">
  10. <title>Lascia un messaggio - {{site}}</title>
  11. </head>
  12. <body data-site="{{siteid}}">
  13. <div id="container">
  14. <div id="content">
  15. <!-- <div id="image"><a href="/"><img alt="logo" src="logo" height="80"/></a></div> -->
  16. <section id="help">
  17. {% if siteid %}
  18. {% if sitedata['intro'] %}
  19. {{sitedata.intro}}
  20. {% else %}
  21. Questo sito ti permette di lasciare un audio a {{siteid}}
  22. {% endif %}
  23. {% endif %}
  24. </section>
  25. <div id="buttons">
  26. <button id="record_audio" type="button">Registra</button>
  27. <button id="stop_record" type="button">Stop</button>
  28. </div>
  29. <canvas id="visualizer" class="visualizer"></canvas>
  30. <audio id="player" controls="controls"></audio>
  31. <button id="download" type="button"><img src="download.png"/></button>
  32. <br/>
  33. <div id="bar"></div>
  34. <div id="preview">
  35. <div id="spiegazione1">
  36. <p> Questo è l'audio che hai registrato:</p>
  37. <p> Se ti va bene, premi su Carica</p>
  38. <button type="button" id="upload">Carica</button>
  39. </div>
  40. </div>
  41. <div id="status"></div>
  42. </div><!-- content -->
  43. </div><!-- container -->
  44. <script src="{{ url_for('static', filename='js/jquery-1.12.4.js') }}"></script>
  45. <script type="text/javascript" src="{{url_for('static', filename='js/upload.js')}}"></script>
  46. <script type="text/javascript" src="{{url_for('static', filename='js/detto.js')}}"></script>
  47. <footer>
  48. <a href="{{url_for('license')}}" rel="jslicense">Javascript license information</a>
  49. </footer>
  50. </body>
  51. </html>