51 lines
1.5 KiB
HTML
51 lines
1.5 KiB
HTML
<!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" />
|
|
<title>HP ePrint clone Web Wrapper</title>
|
|
<style>
|
|
#uploadStatus,
|
|
#commandOutput {
|
|
margin-top: 20px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="header">HP ePrint like printing WebGUI</div>
|
|
|
|
<fieldset>
|
|
<legend>File Selection</legend>
|
|
<form id="uploadForm">
|
|
<input type="file" accept=".jpg, .jpeg, .png, .gif, .txt, .pdf" name="file" required />
|
|
<input
|
|
type="text"
|
|
name="targetmail"
|
|
placeholder="Confirmation e-mail after printing finishes [Optional]"
|
|
style="width: 210px;"
|
|
/>
|
|
<br />
|
|
<button type="submit" class="button">Upload</button>
|
|
</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>
|
|
|
|
<div style="margin-top: 10px;" class="footer">
|
|
<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
|
|
</div>
|
|
|
|
<script src="/assets/index.js"></script>
|
|
</body>
|
|
</html>
|