Create landing.html
Browse files- templates/landing.html +13 -0
templates/landing.html
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html>
|
3 |
+
<head>
|
4 |
+
<title>Welcome to Your App</title>
|
5 |
+
</head>
|
6 |
+
<body>
|
7 |
+
<h1>Welcome to Your App</h1>
|
8 |
+
<p>Choose an action:</p>
|
9 |
+
<a href="/login">Login</a>
|
10 |
+
<br>
|
11 |
+
<a href="/register">Register</a>
|
12 |
+
</body>
|
13 |
+
</html>
|