web-hp-eprint-clone/web/index.html

60 lines
1.9 KiB
HTML
Raw Permalink Normal View History

2024-09-29 19:15:37 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/assets/global.css" />
2024-10-31 20:44:19 +01:00
<title>HP ePrint clone Web Wrapper</title>
2024-09-29 19:15:37 +02:00
<style>
#uploadStatus,
#commandOutput {
margin-top: 20px;
}
</style>
</head>
2024-09-30 14:41:37 +02:00
<body>
2024-10-31 20:44:19 +01:00
<div class="header">HP ePrint like printing WebGUI</div>
2024-09-29 19:15:37 +02:00
<fieldset>
<legend>File Selection</legend>
<form id="uploadForm">
<input type="file" accept=".jpg, .jpeg, .png, .gif, .txt, .pdf, .doc, .docx, .xls, .xlsx, .ini, .html" name="file" required />
2024-09-29 19:15:37 +02:00
<input
type="text"
name="printconfig"
placeholder="Specify which pages to print (only supported on PDF and converted MS Office documents) [Optional]"
style="width: 600px;"
2024-09-29 19:15:37 +02:00
/>
<br />
<form id="quality">
<label for="res">Quality:</label>
<select id="res" name="res">
<option value="1">1 (Draft)</option>
<option value="2">2 (Draft)</option>
<option value="3">3 (Draft)</option>
<option value="4" selected>4 (Normal)</option>
<option value="5">5 (Best)</option>
</select>
<button type="submit" style="width: 750px;" class="button">Upload</button>
2024-09-29 19:15:37 +02:00
</form>
</fieldset>
<fieldset style="margin-top: 10px">
<legend>Terminal</legend>
<div id="uploadStatus"></div>
<pre id="commandOutput"></pre>
<div>
<div id="deleteStatus"></div>
<pre id="deleteOutput"></pre>
</div>
</fieldset>
2024-09-30 14:41:37 +02:00
<div style="margin-top: 10px;" class="footer">
2024-10-31 20:44:19 +01:00
<a href="https://git.fluffy.pw/matu6968/web-hp-eprint-clone">[ web-hp-eprint-clone ]</a> -
<a href="https://git.fluffy.pw/leafus/s3-client-web">[ forked of s3-client-web ]</a> - Licensed under MIT
2024-09-29 19:15:37 +02:00
</div>
<script src="/assets/index.js"></script>
</body>
</html>