-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathimport.html
More file actions
17 lines (17 loc) · 642 Bytes
/
import.html
File metadata and controls
17 lines (17 loc) · 642 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Import Page | Tab Notes</title>
<script type="text/javascript" src="./browser-polyfill.min.js"></script>
<script type="text/javascript" src="./migration.js"></script>
<script type="text/javascript" src="./utils.js"></script>
<script type="text/javascript" src="./import.js"></script>
</head>
<body>
<h1>Tab Notes - Import Page</h1>
<div>Paste your exported notes here.</div>
<textarea id='import-content' style='width: 50vw; height: 75vh;'></textarea>
<button id='import-button' data-current-ask="json">Import</button>
</body>
</html>