Spaces:
Running
Running
Update templates/home.html
Browse files- templates/home.html +22 -25
templates/home.html
CHANGED
@@ -1,34 +1,31 @@
|
|
1 |
<!DOCTYPE html>
|
2 |
<html lang="en">
|
3 |
<head>
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
</head>
|
10 |
<body>
|
11 |
-
|
12 |
<img src="/resources/aiRobot1.png" alt="">
|
13 |
-
<span>Hi
|
14 |
-
|
15 |
-
<div class="convo">
|
16 |
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
<
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
</div>
|
28 |
</div>
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
</body>
|
34 |
-
</html>
|
|
|
1 |
<!DOCTYPE html>
|
2 |
<html lang="en">
|
3 |
<head>
|
4 |
+
<meta charset="UTF-8" />
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
6 |
+
<title>AI Question Answering</title>
|
7 |
+
<link rel="stylesheet" href="/static/app.css" />
|
8 |
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" />
|
9 |
</head>
|
10 |
<body>
|
11 |
+
<header class="intro">
|
12 |
<img src="/resources/aiRobot1.png" alt="">
|
13 |
+
<span>Hi, I’m <em>Chris</em>, your AI assistant. How can I help you today?</span>
|
14 |
+
</header>
|
|
|
15 |
|
16 |
+
<div class="convo"></div>
|
17 |
+
|
18 |
+
<div class="qtdoc">
|
19 |
+
<div class="qt">
|
20 |
+
<input type="text" id="questionInput" placeholder="Ask me anything about any document :D ">
|
21 |
+
<div class="icons">
|
22 |
+
<i class="fa-solid fa-image"></i>
|
23 |
+
<i class="fa-solid fa-file"></i>
|
24 |
+
<p class="sendingQA">send</p>
|
25 |
+
</div>
|
|
|
26 |
</div>
|
27 |
+
</div>
|
28 |
+
|
29 |
+
<script src="/static/application.js"></script>
|
|
|
30 |
</body>
|
31 |
+
</html>
|