-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
36 lines (36 loc) · 1.13 KB
/
popup.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
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Citation Generator</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<h1>Citation Generator</h1>
<label for="inputUrl">URL:</label>
<input type="text" id="inputUrl" placeholder="Enter the URL" />
<div id="citation-container" class="form-group">
<div>
<label for="authorInput">Author:</label>
<input type="text" id="authorInput" />
</div>
<div>
<label for="titleInput">Title:</label>
<input type="text" id="titleInput" />
</div>
<div>
<label for="dateInput">Date:</label>
<input type="text" id="dateInput" />
</div>
<div>
<label for="publisherInput">Publisher:</label>
<input type="text" id="publisherInput" />
</div>
<pre id="citation" class="markdown-pre"></pre>
</div>
<p id="copyMessage" class="hidden"></p>
<button id="copy" class="copy-btn, btn" disabled>Copy</button>
<script src="popup.js"></script>
</body>
</html>