-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathoptions.html
44 lines (40 loc) · 1.44 KB
/
options.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
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title id="options-page-title">Book2Notion扩展程序选项</title>
<link rel="stylesheet" type="text/css" href="css/options.css">
</head>
<body>
<div id="content">
<h1>
<img src='./imgs/B2N.png' title="Book2Notion" alt="Book2Notion"><br>
<div id="options-title-heading">扩展程序设置</div>
</h1>
<div class="option-row">
<p class="title">Token:</p>
<div class="text">
<textarea id="nToken" spellcheck="false"></textarea>
</div>
</div>
<div class="option-row">
<p class="title">PageID:</p>
<div class="text">
<textarea id="pageID" spellcheck="false"></textarea>
</div>
</div>
<div class="btn" id="rt">
<button id="save">保存</button>
<button id="reset">重置</button>
</div>
</div>
<footer class="gtx-footer">
<a class="gtx-a" id="options-link" target="_blank" href="options.html">Notion</a>
-
<a class="gtx-a" id="github-link" target="_blank" href="https://github.com/lyh081/Book2Notion">Github地址</a>
-
<a class="gtx-a" id="about-link" target="_blank" href="https://cetus.notion.site">联系</a>
</footer>
<script src="js/options.js"></script>
</body>
</html>