mirror of
https://github.com/1f349/tulip.git
synced 2024-11-09 22:42:53 +00:00
30 lines
963 B
HTML
30 lines
963 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="/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>
|