-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanagement.html
37 lines (28 loc) · 1.28 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Seafile</title>
<script src="dist/management.js" type="module" defer=""></script>
</head>
<body style="background-color:#ffffff;">
<form>
<label for="server">Seafile server</label>
<input id="server" value="" type="text" name="seafile_server" style="width: 100%;
box-sizing:
border-box;" />
<label for="username">Seafile Username</label>
<input id="username" type="text" value="" name="username" style="width: 100%;
box-sizing:
border-box;" />
<label for="password">Password</label>
<input value="" id="password" type="text" name="password" style="width: 100%;
box-sizing:
border-box;" />
<button id="save" type="button">Save</button>
<button id="edit" type="button">Edit</button>
<div id="error_message" style="text-align: right; color:Tomato">
</div>
</form>
</body>
</html>