-
Notifications
You must be signed in to change notification settings - Fork 5
/
config.html
46 lines (46 loc) · 1.18 KB
/
config.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
<html>
<head>
<link rel="stylesheet" href="config.css">
<script src="config.js"></script>
</head>
<body>
<form id="form" action="" autocomplete="off">
<table border=0>
<tr>
<td colspan=2><h1>Configure ownCloud News Checker</h1></td>
</tr>
<tr>
<td colspan=2><br></td>
</tr>
<tr>
<td colspan=2><div>Enter the URL where you access your News app, this should look something like: https://owncloud.mysite.com/index.php/apps/news/</div></td>
</tr>
<tr>
<td><label>ownCloud News URL</label></td>
<td><input type="text" id="url" /></td>
</tr>
<tr>
<td colspan=2><br></td>
</tr>
<tr>
<td colspan=2><div>The following fields are optional. If you don't supply values, the browser cookies will be used to authenticate.</div></td>
</tr>
<tr>
<td><label>Username</label></td>
<td><input type="text" id="username" /></td>
</tr>
<tr>
<td><label>Password</label></td>
<td><input type="password" id="password" /></td>
</tr>
<tr>
<td colspan=2><br></td>
</tr>
<tr>
<td></td>
<td><button type="submit">Save</button></td>
</tr>
</table>
</form>
</body>
</html>