Initial commit
This commit is contained in:
28
src/static/index.html
Normal file
28
src/static/index.html
Normal 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>
|
Reference in New Issue
Block a user