Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

invoice.html 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <html>
  2. <head>
  3. <style>
  4. .button {
  5. background-color: #000000; /* Green */
  6. border: none;
  7. color: white;
  8. padding: 15px 32px;
  9. text-align: center;
  10. text-decoration: none;
  11. display: inline-block;
  12. margin: 4px 2px;
  13. cursor: pointer;
  14. }
  15. .button1 {font-size: 10px;}
  16. .button2 {font-size: 12px;}
  17. .button3 {font-size: 16px;}
  18. .button4 {font-size: 50px;}
  19. .button5 {font-size: 24px;border-radius: 12px;}
  20. </style>
  21. </head>
  22. <body>
  23. <div style="background-image: url('https://lh3.googleusercontent.com/p/AF1QipONWF8G50u9Bu-dklcj3kzesofOn8Z0q0LdHeU1=w1080-h608-p-no-v0');
  24. /* Full height */
  25. height: 100%;
  26. / Center and scale the image nicely /
  27. background-position: center;
  28. background-repeat: no-repeat;
  29. background-size: cover;">
  30. <h1 class="button button5"> INVOICE PARSER </h1>
  31. <br> <br>
  32. <a class="button button5"href="/">HOME</a>
  33. <form action="/upload_invoice" method="POST" enctype="multipart/form-data">
  34. <div class="form-group">
  35. <div class="custom-file">
  36. <input type="file" class="button button5" name="image" id="image" accept=".jpg,.png,.jpeg,.JPEG,.pdf"> <br> <br><br>
  37. <div class="bg"></div>
  38. <input class="button button5" type="submit">
  39. </div>
  40. </div>
  41. </form>
  42. <form action="{{ url_for('Download_invoice') }}" method="GET">
  43. <br><br> <input type="submit" class="button button5" value="Download"></form>
  44. <form action="{{ url_for('Table') }}" method="GET">
  45. <br><br> <input type="submit" class="button button5" value="Table"></form>
  46. <style>
  47. body {
  48. width: 100%;
  49. height:100%;
  50. font-family: 'Helvetica';
  51. background-color:#000000;
  52. color: #fff;
  53. font-size: 24px;
  54. text-align:center;
  55. letter-spacing:1.4px;
  56. }
  57. </style>
  58. </body>
  59. </html>