-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpaste.html
34 lines (30 loc) · 1.04 KB
/
paste.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
33
34
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/css2?family=MuseoModerno:wght@100;400;900&display=swap" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link rel="stylesheet" href="style.css">
<title>Image Hoster</title>
</head>
<body>
<nav>
<a href="/upload">Upload</a>
<a href="/paste">Paste</a>
</nav>
<main>
<button class="pasteprompt">Click here and paste</button>
<h1>Preview</h1>
<div contenteditable="true" class="paste"></div>
<button class="reset" hidden>Reset</button>
<form method="POST" action="/upload_paste">
<input name="url" class="data" hidden required>
<br>
<button type="submit">Upload</button>
</form>
<footer>Created by <a href="https://github.com/navaneethkm004">Navaneeth K M</a></footer>
</main>
<script src="script.js"></script>
</body>
</html>