CustomWeb/settings.html
2025-01-02 17:38:04 +00:00

41 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Custom Web - Settings</title>
<link rel="shortcut icon" type="image/png" href="img/icon48.png">
<link rel="stylesheet" href="css/common.css"/>
<link rel="stylesheet" href="css/index.css"/>
<link rel="stylesheet" href="css/settings.css"/>
</head>
<body>
<header>
<img src="img/icon48.png"/>
<span>Custom Web</span>
</header>
<main>
<form id="optionsForm">
<section id="storage-settings">
<h2>Storage</h2>
<label for="webdav-address">WebDAV Address</label>
<input id="webdav-address" class="new-input" type="text" placeholder="https://example.com:1234/CustomWeb/"></input>
<label for="webdav-username">WebDAV Username</label>
<input id="webdav-username" class="new-input" type="text" placeholder="username"></input>
<label for="webdav-password">WebDAV Password</label>
<input id="webdav-password" class="new-input" type="password" placeholder="********"></input>
<input id="webdav-push-all" type="button" value="Push all"></input>
<input id="webdav-pull-all" type="button" value="Pull all"></input>
</section>
</form>
</main>
</body>
<script src="js/storage.js"></script>
<script src="js/file.js"></script>
<script src="js/webdav.js"></script>
<script src="js/settings.js"></script>
</html>