-
Notifications
You must be signed in to change notification settings - Fork 1
/
management.html
76 lines (76 loc) · 1.9 KB
/
management.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>
<head>
<meta charset="utf-8"/>
<title></title>
<script src="management.js" type="application/javascript" defer=""></script>
<style type="text/css">
:root {
font: message-box;
color: #0c0c0d;
}
body {
font-size: 1.1em;
}
ul {
list-style: none;
padding: 0;
}
h1 {
font-weight: 600;
font-size: 1.25em;
margin-top: 0;
margin-bottom: 0.5em;
}
h2 {
font-weight: 600;
font-size: 1.1em;
margin: 0.5em 0;
}
p {
margin: 0.5em 0;
}
input {
width: 100%;
box-sizing: border-box;
}
</style>
</head>
<body>
<form>
<h1 data-message="serviceName"></h1>
<ul>
<li>
<label>
<h2 data-message="serverURLLabel"></h2>
<img src="images/webdav-files.png" alt="WebDav URL from Settings" width="400" height="315" />
<p data-message="serverURLDesc"></p>
<input type="url" name="webdavUrl" required="true" placeholder="https://my.owncloud.server/remote.php/dav/files/username/" />
</label>
</li>
<li>
<label>
<h2 data-message="usernameLabel"></h2>
<p data-message="usernameDesc"></p>
<input type="text" name="username" required="true" placeholder="username" />
</label>
</li>
<li>
<label>
<h2 data-message="tokenLabel"></h2>
<p data-message="tokenDesc"></p>
<input type="password" name="token" required="true" placeholder="xxxxx" />
</label>
</li>
<li>
<label>
<h2 data-message="pathLabel"></h2>
<p data-message="pathDesc"></p>
<input type="text" name="path" placeholder="/MailAttachments/" value="/MailAttachments/" />
</label>
</li>
</ul>
<div style="text-align: right"><button type="button">Save</button></div>
</form>
</body>
</html>