upload.html 964 B

1234567891011121314151617181920212223242526272829
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <!-- Required meta tags -->
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  7. <!-- Bootstrap CSS -->
  8. <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
  9. integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
  10. <title>network pdf printer</title>
  11. </head>
  12. <body>
  13. <main role="main" class="container">
  14. <div class="jumbotron">
  15. <h1>network pdf printer</h1>
  16. <p class="lead">On this page you can upload pdf files to be printed on the network printer.</p>
  17. <form action="/uploader" method="POST" enctype="multipart/form-data">
  18. <input type="file" name="file" />
  19. <input type="submit" class="btn btn-primary mb-2" value="Upload">
  20. </form>
  21. </div>
  22. </main>
  23. </body>
  24. </html>