23 lines
710 B
Handlebars
23 lines
710 B
Handlebars
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Success</title>
|
|
{{> styles}}
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<div class="form-container" style="text-align: center;">
|
|
<h2>Success</h2>
|
|
<p style="color: #388E3C; font-size: 18px;">Password changed successfully!</p>
|
|
<a href="/" style="display: inline-block; margin-top: 20px; padding: 10px 20px; background-color: #4CAF50; color: white; text-decoration: none; border-radius: 4px;">Return Home</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|