mirror of
https://github.com/1f349/tulip.git
synced 2024-11-09 22:42:53 +00:00
27 lines
836 B
HTML
27 lines
836 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>{{.ServiceName}}</title>
|
|
<link rel="stylesheet" href="/theme/style.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>{{.ServiceName}}</h1>
|
|
</header>
|
|
<main>
|
|
<form method="POST" action="/mail/password">
|
|
<input type="hidden" name="code" value="{{.Code}}"/>
|
|
<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>
|