Update templates/landing.html
Browse files- templates/landing.html +7 -0
templates/landing.html
CHANGED
@@ -5,6 +5,12 @@
|
|
5 |
<link rel="stylesheet" type="text/css" href="/static/style.css">
|
6 |
</head>
|
7 |
<body>
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
<h1>Welcome to Your App</h1>
|
9 |
<p>Choose an action:</p>
|
10 |
<a href="/login">Login</a>
|
@@ -12,5 +18,6 @@
|
|
12 |
<a href="/register">Register</a>
|
13 |
<br>
|
14 |
<a href="/password-reset-request">Forgot Password?</a> <!-- Add this line -->
|
|
|
15 |
</body>
|
16 |
</html>
|
|
|
5 |
<link rel="stylesheet" type="text/css" href="/static/style.css">
|
6 |
</head>
|
7 |
<body>
|
8 |
+
<footer>
|
9 |
+
<!-- Footer content -->
|
10 |
+
<p>Copyright © Your Website</p>
|
11 |
+
</footer>
|
12 |
+
<div class="background-container">
|
13 |
+
<div class="color-overlay"></div>
|
14 |
<h1>Welcome to Your App</h1>
|
15 |
<p>Choose an action:</p>
|
16 |
<a href="/login">Login</a>
|
|
|
18 |
<a href="/register">Register</a>
|
19 |
<br>
|
20 |
<a href="/password-reset-request">Forgot Password?</a> <!-- Add this line -->
|
21 |
+
</div>
|
22 |
</body>
|
23 |
</html>
|