File size: 593 Bytes
38361e5 e94c94c 38361e5 9a2b7d4 38361e5 7e5d74b 9a2b7d4 38361e5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
<!DOCTYPE html>
<html>
<head>
<title>Welcome to Your App</title>
<link rel="stylesheet" type="text/css" href="/static/style2.css">
</head>
<body>
<footer>
<!-- Footer content -->
<p>Copyright © Your Website</p>
</footer>
<div class="background-container">
<div class="color-overlay"></div>
<h1>Welcome to Your App</h1>
<p>Choose an action:</p>
<a href="/login">Login</a>
<br>
<a href="/register">Register</a>
<br>
<a href="/password-reset-request">Forgot Password?</a> <!-- Add this line -->
</div>
</body>
</html> |