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">
<link rel="stylesheet" type="text/css" href="/static/css/iziToast.min.css">
<script src="/static/js/jquery-3.4.1.min.js"></script>
<script src="/static/js/bootstrap.min.js"></script>
<script src="/static/js/iziToast.min.js"></script>
<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>
<p class="lead">Upload and print a file.</p>
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 (look for Vatican Embassy)</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">
Vatican Embassy <a href="https://twitter.com/VaticanEmbassy">Twitter</a> - &lt;<a href="mailto:vaticanembassy@porcod.io">email</a>&gt;
</span>
</div>
</footer>
2019-08-14 22:19:44 +02:00
</body>
</html>