-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
38 lines (34 loc) · 1.12 KB
/
index.php
File metadata and controls
38 lines (34 loc) · 1.12 KB
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
33
34
35
36
37
38
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Image Uploader</title>
<link rel="stylesheet" href="/public/styles.css" />
</head>
<body>
<main class="container">
<h1>Upload an image</h1>
<p class="subtitle">Choose an image and get a shareable link.</p>
<form id="uploadForm" class="card">
<input
id="imageInput"
type="file"
accept="image/png,image/jpeg,image/webp,image/gif"
required
/>
<button id="uploadBtn" type="submit">Upload</button>
</form>
<p id="status" class="status"></p>
<section id="result" class="result hidden">
<label for="generatedLink">Generated link</label>
<div class="row">
<input id="generatedLink" type="text" readonly />
<button id="copyBtn" type="button">Copy</button>
</div>
<a id="openLink" href="#" target="_blank" rel="noopener">Open image</a>
</section>
</main>
<script src="/public/app.js" defer></script>
</body>
</html>