Loginauth / templates /landing.html
Gregniuki's picture
Update templates/landing.html
7e5d74b
raw
history blame
391 Bytes
<!DOCTYPE html>
<html>
<head>
<title>Welcome to Your App</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<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 -->
</body>
</html>