mirror of
https://gitea.dmz.rs/Decentrala/luser.git
synced 2026-09-19 20:00:27 +02:00
35 lines
1.1 KiB
HTML
35 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
|
<link rel="stylesheet" href="/account/static/styles/main.css">
|
|
<title>User password change in LDAP system</title>
|
|
</head>
|
|
|
|
<body>
|
|
<main class="container">
|
|
<h1 style="text-align:center;">Change password</h1>
|
|
<form action="/account/changepassword/" method="POST">
|
|
<div class="form-input">
|
|
<label for="username">Username:</label>
|
|
<input type="text" name="username" id="username" placeholder="Username" required>
|
|
</div>
|
|
<div class="form-input">
|
|
<label for="oldpassword">Old password:</label>
|
|
<input type="password" name="oldpassword" id="oldpassword" placeholder="Old password" required>
|
|
</div>
|
|
<div class="form-input">
|
|
<label for="newpassword">New password:</label>
|
|
<input type="password" name="newpassword" id="newpassword" placeholder="New password" required>
|
|
</div>
|
|
<br />
|
|
<button>Change Password</button>
|
|
</form>
|
|
</main>
|
|
</body>
|
|
|
|
</html>
|