Spaces:
Sleeping
Sleeping
Update templates/index.html
Browse files- templates/index.html +3 -7
templates/index.html
CHANGED
@@ -3,14 +3,10 @@
|
|
3 |
<head>
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
-
<title>
|
7 |
-
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css') }}">
|
8 |
</head>
|
9 |
<body>
|
10 |
-
<
|
11 |
-
|
12 |
-
<button onclick="window.location.href='/signup'">Signup</button>
|
13 |
-
<button onclick="window.location.href='/login'">Login</button>
|
14 |
-
</div>
|
15 |
</body>
|
16 |
</html>
|
|
|
3 |
<head>
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Welcome Page</title>
|
|
|
7 |
</head>
|
8 |
<body>
|
9 |
+
<h1>Welcome, {{ name }}!</h1>
|
10 |
+
<p>Your email: {{ email }}</p>
|
|
|
|
|
|
|
11 |
</body>
|
12 |
</html>
|