-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (39 loc) · 1.57 KB
/
index.html
File metadata and controls
42 lines (39 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<link rel="stylesheet" type="text/css" href="css/style.css" media="all">
<title>SchizoChat</title>
</head>
<body>
<button id="clean">Supprimez l'historique !</button>
<div class="content">
<header>
<div><img src=img/chat.png class="logo"></div>
<div class="banner">
<h1>SchizoChat</h1>
<p class="baseline">Conversez avec vous-même !</p>
</div>
</header>
<article>
<div id="chatContainer1">
<div class="chatWindow">
<div id="chat1"></div>
<textarea id="user1" placeholder="Ecrivez un message" onkeypress="return validForm(event,1)"></textarea>
<p class="info">"Enter" pour valider / "Shift + Enter" pour sauter une ligne</p>
<button id="speak1">Envoyer</button>
</div>
</div>
<div id="chatContainer2">
<div class="chatWindow">
<div id="chat2"></div>
<textarea id="user2"placeholder="Ecrivez un message" onkeypress="return validForm(event,2)"></textarea>
<p class="info">"Enter" pour valider / "Shift + Enter" pour sauter une ligne</p>
<button id="speak2">Envoyer</button>
</div>
</div>
</article>
<script src="js/chat.js"></script>
</body>
</html>