27 lines
689 B
HTML
27 lines
689 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<title>Change password</title>
|
|
</head>
|
|
<body>
|
|
<form action="/admin/password" method="post">
|
|
<input
|
|
type="password"
|
|
name="current_password"
|
|
placeholder="Current password"
|
|
/>
|
|
<input type="password" name="new_password" placeholder="New password" />
|
|
<input
|
|
type="password"
|
|
name="new_password_check"
|
|
placeholder="Confirm new password"
|
|
/>
|
|
<button type="submit">Change password</button>
|
|
</form>
|
|
{}
|
|
<p><a href="/admin/dashboard">Back</a></p>
|
|
</body>
|
|
</html>
|