Loginauth / templates /landing.html
Gregniuki's picture
Update templates/landing.html
e94c94c
raw
history blame
593 Bytes
<!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>