-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathindex.html
94 lines (94 loc) · 1.95 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Dature:新浪博客备份工具</title>
<style>
body {
background-color: #fefefe;
}
#app {
padding: 25px 0;
margin-left: auto;
margin-right: auto;
width: 480px;
}
label {
color: darkseagreen;
line-height: 36px;
display: block;
}
.userid {
margin-bottom: 25px;
}
input[name=uid] {
height: 30px;
width: 100%;
line-height: 30px;
border: 1px dashed #e2e2e2;
border-radius: 3px;
}
input[name=uid]:focus {
outline: 1px dashed darkseagreen;
}
.cookie {
margin-bottom: 25px;
}
textarea[name=cookie] {
height: 120px;
width: 100%;
border-radius: 3px;
border: 1px dashed #e2e2e2;
}
textarea[name=cookie]:focus {
outline: 1px dashed darkseagreen;
}
.button {
margin-bottom: 25px;
}
.button a {
cursor: pointer;
}
.btn {
display: inline-block;
width: 100px;
color: #fff;
background-color: darkseagreen;
line-height: 36px;
text-align: center;
border-radius: 3px;
}
.help {
font-size: 13px;
padding-left: 10px;
margin-bottom: 20px;
}
.output {
color: #fff;
font-size: 12px;
height: 270px;
padding: 8px;
border-radius: 3px;
overflow-y: auto;
}
.loging {
background-color: #000;
}
a {
color: darkseagreen;
text-decoration: none;
}
</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="button">
<a class="btn" id="btn">确定</a>
<a class="help" 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="output" id="out"></div>
</div>
</body>
</html>