2023-11-25 15:08:44 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<title>{{.ServiceName}}</title>
|
2023-12-17 16:03:13 +00:00
|
|
|
<link rel="stylesheet" href="/theme/style.css">
|
2023-11-25 15:08:44 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
|
|
|
<h1>{{.ServiceName}}</h1>
|
|
|
|
</header>
|
|
|
|
<main>
|
|
|
|
<form method="POST" action="/edit/password">
|
|
|
|
<div>
|
|
|
|
<label for="field_password">Current Password:</label>
|
|
|
|
<input type="password" name="password" id="field_password" autocomplete="password" autofocus required/>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<label for="field_password">New Password:</label>
|
|
|
|
<input type="password" name="password" id="field_password" autocomplete="new_password" required/>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<label for="field_password">Retype New Password:</label>
|
|
|
|
<input type="password" name="password" id="field_password" autocomplete="confirm_password" required/>
|
|
|
|
</div>
|
|
|
|
<button type="submit">Change Password</button>
|
|
|
|
</form>
|
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
</html>
|