adds frontend
This commit is contained in:
27
public/index.html
Normal file
27
public/index.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Archive</title>
|
||||
<link rel="stylesheet" href="/assets/app.css">
|
||||
<script src="/assets/app.js" defer></script>
|
||||
</head>
|
||||
<body>
|
||||
<main class="shell">
|
||||
<form class="archive-box" id="archive-form" autocomplete="off">
|
||||
<label class="sr-only" for="archive-url">URL</label>
|
||||
<div class="input-row">
|
||||
<input id="archive-url" name="url" type="url" inputmode="url" spellcheck="false" autocomplete="url" placeholder="https://example.com" required>
|
||||
<button id="archive-submit" type="submit">Archive</button>
|
||||
</div>
|
||||
<div class="progress-wrap" id="progress-wrap" hidden>
|
||||
<div class="progress-track" aria-hidden="true">
|
||||
<div class="progress-bar" id="progress-bar"></div>
|
||||
</div>
|
||||
<div class="status-line" id="status-line" aria-live="polite"></div>
|
||||
</div>
|
||||
</form>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user