index.html 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html>
  2. <html lang="fr">
  3. <head>
  4. <title>Manche Numérique - Contrôlez vos données</title>
  5. <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='font-awesome-4.7.0/css/font-awesome.min.css') }}">
  6. <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='jquery-ui/jquery-ui.min.css') }}"/>
  7. <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='datachecker.css') }}"/>
  8. <script type="text/javascript" src="{{ url_for('static', filename='jquery-3.3.1.min.js') }}"></script>
  9. <script type="text/javascript" src="{{ url_for('static', filename='jquery-ui/jquery-ui.min.js') }}"></script>
  10. <script type="text/javascript" src="{{ url_for('static', filename='datachecker.js') }}"> </script>
  11. </head>
  12. <body>
  13. <header>
  14. <h1>Manche Numérique - Contrôlez vos données</h1>
  15. </header>
  16. <section id="main">
  17. <section id="submit-file">
  18. <form id="submit-form" method="post" enctype="multipart/form-data">
  19. <label for="dossier">Sélectionnez le fichier à contrôler (Au format <b>.zip</b>)</label>
  20. <input type="file" id="dossier" name="dossier" accept="application/zip" />
  21. <button class="ui-button ui-corner-all ui-widget">Soumettre</button>
  22. </form>
  23. </section>
  24. </section>
  25. <footer>
  26. Manche Numérique, 2018 - <a href="">Contact</a>
  27. </footer>
  28. </body>
  29. </html>