Spaces:
Paused
Paused
Create templates/index.html
Browse files
flask-app/templates/index.html
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html>
|
| 3 |
+
<head>
|
| 4 |
+
<title>My Flask App</title>
|
| 5 |
+
</head>
|
| 6 |
+
<body>
|
| 7 |
+
<h1>Hi user go</h1>
|
| 8 |
+
<p>This is a full Flask app running on internal port 9001, bridged at /app.</p>
|
| 9 |
+
<p><a href="/app/status">Check status</a></p>
|
| 10 |
+
</body>
|
| 11 |
+
</html>
|