forked from junyiz/dature
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (77 loc) · 1.64 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Dature:新浪博客备份工具</title>
<style>
body {
background-color: #484d5d;
background-image: url(assets/bg.png);
color: azure;
}
#app {
padding: 20px 0;
margin-left: auto;
margin-right: auto;
width: 420px;
}
label {
width: 70px;
display: inline-block;
}
.userid {
display: flex;
margin-bottom: 20px;
}
input[name=uid] {
flex: 1;
height: 30px;
line-height: 30px;
border-radius: 3px;
}
.cookie {
display: flex;
margin-bottom: 20px;
}
textarea[name=cookie] {
flex: 1;
height: 120px;
border-radius: 3px;
}
.button {
text-align: center;
margin-bottom: 20px;
}
.button a {
cursor: pointer;
display: inline-block;
width: 80px;
line-height: 30px;
border-radius: 3px;
border: 1px dashed #e2e2e2;
}
.help {
font-size: 14px;
padding-left: 70px;
margin-bottom: 20px;
}
.output {
font-size: 12px;
height: 222px;
overflow-y: auto;
}
a {
color: darkseagreen;
}
</style>
</head>
<body>
<div id="app">
<div class="userid"><label for="uid">UID:</label> <input name="uid" id="uid" /></div>
<div class="cookie"><label for="cookie">Cookie:</label><textarea name="cookie" id="cookie"></textarea></div>
<div class="help"><a id="help" href="https://gitee.com/junyiz/dature#%E5%A6%82%E4%BD%95%E6%9F%A5%E7%9C%8B%E6%96%B0%E6%B5%AA%E5%8D%9A%E5%AE%A2%E7%9A%84-uid">点击查看如何获取是 UID 和 Cookie?</a></div>
<div class="button"><a id="btn">确定</a></div>
<div class="output" id="out"></div>
</div>
</body>
</html>