-
Notifications
You must be signed in to change notification settings - Fork 0
/
send.html
27 lines (24 loc) · 975 Bytes
/
send.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Carrier Pigeon</title>
<link rel="stylesheet" href="https://linfindel.github.io/nadircss/nadir.css">
</head>
<body class="absolute-centre column-flat">
<div id="open-card" class="card-flat-bottom column" style="width: calc(100% - 5rem);">
<button id="open-button" onclick="openFile()">
<span id="open-icon" class="material-symbols-rounded" translate="no">folder_open</span>
<span id="open-text">Open file</span>
</button>
</div>
<div id="copy-card" class="card-subtle-flat-top column" style="width: calc(100% - 5rem);">
<button id="copy-button" class="button-subtle" inert>
<span id="copy-icon" class="material-symbols-rounded" translate="no">content_copy</span>
<span id="copy-text">Copy text</span>
</button>
</div>
<script src="send.js"></script>
</body>
</html>