-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.html
97 lines (87 loc) · 2.72 KB
/
settings.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
95
96
97
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Nextcloud news - Settings</title>
<script src="scripts/jquery-3.6.0.min.js"></script>
<script src="scripts/toast.min.js"></script>
<script src="scripts/settings.js"></script>
<script src="scripts/settings-init.js"></script>
<link rel="stylesheet" href="styles/settings.css" type="text/css" />
</head>
<body class="optionsPage">
<div class="toolbar">
<div id="toggle_feeds_tree">
<a href="news.html"><img alt="go back to news dashabord" src="images/left.png" /></a>
</div>
</div>
<div id="settings">
<h3>Nextcloud credentials</h3>
<table>
<tr>
<td>
<span>Nextcloud url</span>
</td>
<td>
<input type="text" id="nextcloud_url" />
</td>
</tr>
<tr>
<td>
<span>User</span>
</td>
<td>
<input type="text" id="nextcloud_user" />
</td>
</tr>
<tr>
<td>
<span>Password</span>
</td>
<td>
<input type="password" id="nextcloud_password" />
</td>
</tr>
<tr>
<td />
</tr>
<tr>
<td>
<span>Theme</span>
</td>
<td>
<form>
<input type="radio" name="theme" value="light" id="light" />
<label for="light">Light</label>
<input type="radio" name="theme" value="dark" id="dark" />
<label for="dark">Dark</label>
</form>
</td>
</tr>
<tr>
<td>
<span>Readability</span>
</td>
<td>
<form>
<input type="radio" name="readibility" value="yes" id="yes" />
<label for="yes">Yes</label>
<input type="radio" name="readibility" value="no" id="no" />
<label for="no">No</label>
</form>
</td>
</tr>
<tr>
<td />
</tr>
<tr>
<td />
<td>
<button id="save_btn">Save</button>
<a href="news.html">Cancel</a>
</td>
</tr>
</table>
</div>
</body>
</html>