Spaces:
Sleeping
Sleeping
Commit
·
482c1a9
1
Parent(s):
06a6f85
Rename chatbox/index.html to templates/index.html
Browse files
{chatbox → templates}/index.html
RENAMED
@@ -2,8 +2,8 @@
|
|
2 |
<html lang="en">
|
3 |
<head>
|
4 |
<meta charset="UTF-8">
|
5 |
-
<title>
|
6 |
-
<link rel="stylesheet" href="style.css">
|
7 |
</head>
|
8 |
<body>
|
9 |
<div class="chat-container">
|
@@ -15,6 +15,6 @@
|
|
15 |
</div>
|
16 |
</div>
|
17 |
|
18 |
-
<script src="script.js"></script>
|
19 |
</body>
|
20 |
</html>
|
|
|
2 |
<html lang="en">
|
3 |
<head>
|
4 |
<meta charset="UTF-8">
|
5 |
+
<title>Chatbox</title>
|
6 |
+
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css') }}">
|
7 |
</head>
|
8 |
<body>
|
9 |
<div class="chat-container">
|
|
|
15 |
</div>
|
16 |
</div>
|
17 |
|
18 |
+
<script src="{{ url_for('static', filename='script.js') }}"></script>
|
19 |
</body>
|
20 |
</html>
|