Official Snap.as browser extension for quickly uploading photos.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

46 lines
1005 B

  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>Snap.as</title>
  5. <meta charset="utf-8">
  6. <style>
  7. body {
  8. font-size: 100%;
  9. padding: 0.5em;
  10. }
  11. input {
  12. padding: 0.5em;
  13. }
  14. input[type=submit], button {
  15. border: 1px solid rgb(114, 120, 191);
  16. background: rgb(114, 120, 191);
  17. color: white;
  18. margin-left: 0.5em;
  19. width: 7em;
  20. text-align: center;
  21. font-size: 0.86em;
  22. transition: all .2s ease-out;
  23. border-radius: .25em;
  24. }
  25. #uploader {
  26. display: none;
  27. }
  28. #loading {
  29. font-size: 2em;
  30. }
  31. </style>
  32. <script src="dropzone.min.js"></script>
  33. </head>
  34. <body>
  35. <p id="loading">Checking...</p>
  36. <form action="https://snap.as/upload" method="post" class="dropzone" id="uploader">
  37. <div class="fallback">
  38. <input name="file" type="file" />
  39. </div>
  40. </form>
  41. <link href='dropzone.css' rel='stylesheet' type='text/css'>
  42. <script src="uploader.js"></script>
  43. </body>
  44. </html>