-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathhome.html
More file actions
21 lines (20 loc) · 876 Bytes
/
home.html
File metadata and controls
21 lines (20 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chat with JorisBot</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<div class="container">
<h1 class="title">Welcome to JorisBot!</h1>
<p class="description">This is a demo for a 2-part blogpost series on designing, building and deploying a scalable AI-powered chat app from scratch. </p>
<p class="description">Please enter a name to start a new chat, or a name you entered before to continue that chat. </p>
<form id="username-form" action="/chats" method="POST">
<input type="text" name="username" placeholder="Type your name..." autofocus="autofocus">
<input type="submit" value="Send">
</form>
</div>
</body>
</html>