-
Notifications
You must be signed in to change notification settings - Fork 1
/
pref.html
76 lines (66 loc) · 1.98 KB
/
pref.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Document</title>
<style>
* {
box-sizing: border-box;
}
html {
margin: 0;
padding: 0;
}
body {
padding: 16px;
margin: 0;
font-size: 13px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
p {
margin: 0;
}
small,
.small {
font-size: 11px;
}
.secondary {
color: rgba(0, 0, 0, 0.5);
}
.pref-section {
margin-bottom: 12px;
}
.pref-help {
margin-top: 2px;
}
</style>
</head>
<body>
<div class="pref-section">
Login credentials
<div style="margin-top: 4px; line-height: 24px">
<div>
<label><input type="radio" name="save_login" value="keychain" data-pref-key />
Save in the system keychain</label>
</div>
<!--div>
<label><input type="radio" name="save_login" value="plaintext" data-pref-key />
Video not larger than:</label>
<input type="number" data-pref-key="max_video_height" style="width: 4em" />
p
</div -->
<div>
<label><input type="radio" name="save_login" value="no" data-pref-key />
Do not save</label>
</div>
</div>
<p class="small pref-help secondary">
If you store your login credentials in the system keychain,
you may need to authenticate with your system password when IINA starts.
If you choose not to save your login credentials,
you will need to enter your opensubtitles.com password every time.
</p>
</div>
</body>
</html>