48 lines
1.9 KiB
HTML
48 lines
1.9 KiB
HTML
<!--
|
|
Copyright (c) 2021, Philipp Matthias Schäfer (philipp.matthias.schaefer@posteo.de)
|
|
|
|
This file is part of the WebLDAPPasswd application.
|
|
|
|
The WebLDAPPasswd application is free software: you can redistribute it and/or
|
|
modify it under the terms of the GNU Affero General Public License as published
|
|
by the Free Software Foundation, either version 3 of the License or (at your
|
|
option) any later version.
|
|
|
|
The WebLDAPPasswd application is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Affero Public License along
|
|
with the WebLDAPPasswd. If not, see <https://www.gnu.org/licenses/>.
|
|
-->
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>WebLDAPPasswd</title>
|
|
<link rel="stylesheet" href="webldappasswd.css">
|
|
<link rel="icon" type="image/svg+xml" href="logo.svg">
|
|
<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>
|