53 lines
2 KiB
Text
53 lines
2 KiB
Text
<!-- <!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>File Upload with Progress Bar</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>File Upload</h1>
|
|
<div id="drop-area">
|
|
<p>Drag & Drop your file here or click to upload</p>
|
|
<input type="file" id="fileElem" accept="*/*" style="display: none;">
|
|
<label for="fileElem" class="button">Select File</label>
|
|
<div id="progress-container" style="display: none;">
|
|
<div id="progress-bar"></div>
|
|
</div>
|
|
</div>
|
|
<div id="status"></div>
|
|
</div>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html> -->
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title> <%= host %> </title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1 style="font-size: 72px; text-align: center; margin: 20px;"> <%= host %> </h1>
|
|
<p style="text-align: center; font-size: 22px;"> <%= CONFIG.siteInfo %> </p>
|
|
<div id="drop-area">
|
|
<p style='padding: 0;margin: 0; color: #123718bf;'>Drop or Choose file(s)</p>
|
|
<input type="file" id="fileElem" accept="*/*" style="display: none;">
|
|
<!-- <label for="fileElem" class="button">Select File</label> -->
|
|
</div>
|
|
<div id="upload-status"></div>
|
|
</div>
|
|
<div>
|
|
<div style="text-align:center;">
|
|
<p> <a href='./chatterino.png'>Chatterino Config</a> </p>
|
|
<p> <a href='./sharex.sxcu'>ShareX Config</a> </p>
|
|
<p> <a href='https://codeberg.org/Fijxu/file-uploader-crystal'>file-uploader-crystal (BETA <%= CURRENT_VERSION %>-<%= CURRENT_COMMIT %> @ <%= CURRENT_BRANCH %>)</a> </p>
|
|
</div>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|