tulip/pages/reset-password.go.html

27 lines
836 B
HTML
Raw Normal View History

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