-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
71 lines (71 loc) · 1.54 KB
/
popup.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>flomo2blinko</title>
<style>
body {
width: 300px;
padding: 15px;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
.container {
display: flex;
flex-direction: column;
gap: 15px;
}
h3 {
margin: 0 0 10px 0;
color: #333;
}
.input-group {
display: flex;
flex-direction: column;
gap: 5px;
}
label {
font-size: 14px;
color: #666;
}
input {
padding: 8px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 14px;
}
input:focus {
outline: none;
border-color: #1976d2;
}
button {
padding: 10px;
background-color: #1976d2;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
transition: background-color 0.2s;
}
button:hover {
background-color: #1565c0;
}
</style>
<script src="lib/jszip.min.js"></script>
<script src="dist/popup.js"></script>
</head>
<body>
<div class="container">
<h1>flomo2blinko</h1>
<div class="input-group">
<label>Blinko Username:</label>
<input type="text" id="username" placeholder="Enter your Blinko username">
</div>
<div class="input-group">
<label>Flomo Export ZIP:</label>
<input type="file" id="flomoZip" accept=".zip">
</div>
<button id="convertBtn">Convert to .bko</button>
</div>
</body>
</html>