Initial commit

This commit is contained in:
2021-02-10 14:49:30 +01:00
commit 1428d07ee9
20 changed files with 2690 additions and 0 deletions

28
src/static/index.html Normal file
View File

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>WebLDAPPasswd</title>
<link rel="stylesheet" href="webldappasswd.css">
<script src="webldappasswd.js"></script>
</head>
<body>
<form>
<label>Username</label>
<input type="text" name="username" autocomplete="username">
<label>Old Password</label>
<input type="password" name="old_password" autocomplete="current-password">
<label>New Password</label>
<input type="password" name="new_password" autocomplete="new-password">
<button type="button" onclick="changePasswords()">Change Password</button>
</form>
<nav>
<a href="legal.html">Legal Notes</a>
<a href="https://git.schaefer-wolke.de/fiveop/webldappasswd/">WebLDAPPasswd</a>
</nav>
<div id="modal">
<span id="message"><img src="hourglass.svg"> Waiting for server response ...</span>
<button id="close_button" type="button" disabled onClick="hideModal()">Close</button>
</div>
</body>
</html>