-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
30 lines (30 loc) · 942 Bytes
/
popup.html
File metadata and controls
30 lines (30 loc) · 942 Bytes
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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8" />
<title>Quick Pins</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<main class="card">
<form id="link-form">
<input
id="url"
type="url"
placeholder="https://пример.ru"
required
/>
<input
id="label"
type="text"
placeholder="Подпись (необязательно)"
maxlength="40"
/>
<button type="submit">Добавить</button>
</form>
<ul id="links"></ul>
</main>
<script src="popup.js" type="module"></script>
</body>
</html>