-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 1.41 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Arc2bookmarks - JSON to HTML Converter</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="/static/styles.css">
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="/static/main.js"></script>
<script>
window.va = window.va || function () { (window.vaq = window.vaq || []).push(arguments); };
</script>
<script defer src="/_vercel/insights/script.js"></script>
</head>
<body>
<div class="container mt-5">
<h1 class="text-center mb-4">Arc2bookmarks</h1>
<p class="text-center">Upload your JSON file to convert it to HTML:</p>
<form id="upload-form">
<input type="file" id="jsonInput" class="form-control mb-3">
<button type="submit" class="btn btn-primary btn-block">Convert</button>
</form>
<!-- Progress Bar -->
<div class="progress-container mt-3">
<div id="upload-progress-bar" class="progress-bar"></div>
</div>
<p id="upload-status" class="mt-3 text-center">Please select a file to convert.</p>
<a id="downloadLink" class="btn btn-success btn-block mt-3" style="display:none;">Download HTML</a>
</div>
</body>
</html>