44 lines
1.4 KiB
HTML
44 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="robots" content="noindex, nofollow">
|
|
|
|
<title>{{.Title}}</title>
|
|
|
|
<link rel="stylesheet" href="/style.css">
|
|
</head>
|
|
|
|
<body>
|
|
<main>
|
|
<h1>{{.Title}}</h1>
|
|
|
|
<form method="post">
|
|
<label for="username">Username</label>
|
|
<input id="username" name="username" value="{{.Username}}" type="text" required autofocus>
|
|
|
|
<label for="old-password">Old password</label>
|
|
<input id="old-password" name="old-password" type="password" required>
|
|
|
|
<label for="new-password">New password</label>
|
|
<input id="new-password" name="new-password" type="password"
|
|
pattern="{{.Pattern}}" x-moz-errormessage="{{.PatternInfo}}" required>
|
|
|
|
<label for="confirm-password">Confirm new password</label>
|
|
<input id="confirm-password" name="confirm-password" type="password"
|
|
pattern="{{.Pattern}}" x-moz-errormessage="{{.PatternInfo}}" required>
|
|
<p>{{.PatternInfo}}</p>
|
|
<button type="submit">Update password</button>
|
|
</form>
|
|
|
|
<div class="alerts">
|
|
{{ range $key, $value := .Alerts }}
|
|
<div class="alert {{ $key }}">{{ $value }}</div>
|
|
{{ end }}
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|