-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.html
More file actions
30 lines (30 loc) · 1.1 KB
/
settings.html
File metadata and controls
30 lines (30 loc) · 1.1 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Warehouse - Settings</title>
<link rel="stylesheet" type="text/css" href="css/settings.css">
</head>
<body>
<button id="close">x</button>
<form>
<div>
<label for="host">Host</label>
<input type="text" name="host" id="host" required />
<label for="port">Port</label>
<input type="number" name="port" id="port" placeholder="defaults to 21" />
<label for="username">Username</label>
<input type="text" name="username" id="username" required />
<label for="password">Password</label>
<input type="password" name="password" id="password" required />
<label for="path">Upload folder path</label>
<input type="text" name="path" id="path" placeholder="defaults to /upload/" />
<label for="link">Public link to upload folder</label>
<input type="url" name="link" id="link" />
<input type="checkbox" name="remember" id="remember" />
<label for="remember">Remember settings</label>
<input type="submit" value="save" id="save" />
</div>
</form>
<script type="text/javascript" src="js/settings.js"></script>
</body>
</html>