-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (30 loc) · 1.5 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Handoff for Web</title>
<link rel="stylesheet" href="./style.css">
<link rel="shortcut icon" href="./images/128.png" type="image/x-icon">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
</head>
<body style="width: 400px; height: 300px; min-height: 400px; min-height: 300px;">
<div class="d-flex flex-row h-100 w-100 justify-content-center align-items-center">
<div class="remote">
<h1 class="main-content" id="main"></h1>
<button class="btn btn-primary" id="copy">Copy to Clipboard</button>
</div>
<div class="local">
<textarea class="main-content" id="local" placeholder="Paste here" cols="20" rows="5"></textarea>
<button class="btn btn-primary" id="paste">Upload</button>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-cuYeSxntonz0PPNlHhBs68uyIAVpIIOZZ5JqeqvYYIcEL727kskC66kF92t6Xl2V"
crossorigin="anonymous"></script>
<script type="module" src="./app.js"></script>
</body>
</html>