<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> |