httprint/dist/index.html

53 lines
2 KiB
HTML
Raw Normal View History

2019-08-14 22:19:44 +02:00
<!DOCTYPE html>
2019-08-16 20:54:49 +02:00
<html lang="en">
2019-08-14 22:19:44 +02:00
<head>
2019-08-16 20:54:49 +02:00
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="/static/css/bootstrap.min.css">
2019-08-16 23:08:20 +02:00
<link rel="stylesheet" type="text/css" href="/static/css/jquery.toast.min.css">
2019-08-16 20:54:49 +02:00
<script src="/static/js/jquery-3.4.1.min.js"></script>
<script src="/static/js/bootstrap.min.js"></script>
2019-08-16 23:08:20 +02:00
<script src="/static/js/jquery.toast.min.js"></script>
2019-08-16 20:54:49 +02:00
<script src="/static/js/httprint.js"></script>
<title>HTTPrint</title>
2019-08-14 22:19:44 +02:00
</head>
<body>
2019-08-16 20:54:49 +02:00
<div class="container">
<div class="row">
<div class="col-sm">
<div class="jumbotron jumbotron-fluid">
<div class="container">
<h1 class="display-4">HTTPrint</h1>
2019-08-16 23:08:20 +02:00
<p class="lead">Upload and print a <strong>PDF file</strong>. The maximum number of pages that can be printed is <strong>10</strong>.</p>
2019-08-16 20:54:49 +02:00
Instructions:
<ol>
<li>Upload a file, select the number of copies and click the "print" button</li>
<li>Write down the code you will receive</li>
<li>head to the printer</li>
<li>insert the code in the touchpad</li>
</ol>
</div>
</div>
<div class="form-group">
<label for="upload-file">File to print</label>
<input id="upload-file" type="file" class="form-control-file">
</div>
<div class="form-group">
<label for="copies">Number of copies</label>
<input id="copies" type="number" min="1" max="10" value="1" class="form-control">
</div>
<button id="print-btn" class="btn-lg btn-primary">print</button>
</div>
</div>
</div>
<footer class="footer mt-auto py-3">
<div class="container">
<span class="text-muted">
HTTPrint <a href="https://github.com/alberanid/httprint">https://github.com/alberanid/httprint</a>
</span>
</div>
</footer>
2019-08-14 22:19:44 +02:00
</body>
</html>