2023-09-29 16:37:23 +01: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-09-29 16:37:23 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
|
|
|
<h1>{{.ServiceName}}</h1>
|
|
|
|
</header>
|
|
|
|
<main>
|
|
|
|
<form method="POST" action="/mail/password">
|
|
|
|
<div>
|
|
|
|
<label for="field_new_password">New Password:</label>
|
|
|
|
<input type="password"
|
|
|
|
name="new_password"
|
|
|
|
id="field_new_password"
|
|
|
|
autocomplete="new_password"
|
|
|
|
required/>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<label for="field_confirm_password">Confirm Password:</label>
|
|
|
|
<input type="password"
|
|
|
|
name="confirm_password"
|
|
|
|
id="field_confirm_password"
|
|
|
|
autocomplete="confirm_password"
|
|
|
|
required/>
|
|
|
|
</div>
|
|
|
|
<button type="submit">Login</button>
|
|
|
|
</form>
|
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
</html>
|