-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (41 loc) · 1.87 KB
/
index.html
File metadata and controls
52 lines (41 loc) · 1.87 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
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<title>Talk to Stella!</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.4.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://www.gstatic.com/firebasejs/4.1.3/firebase.js"></script>
<script type="text/javascript" src="credentials.js"></script>
</head>
<body>
<div class="headerBar">
<div class="user-photo"><img src="Images/stella3.png"></div>
<p class="title">Stella</p>
</div>
<div class="chatbox">
<div class="chatlogs">
<div class="chat friend">
<div class="user-photo"><img src="Images/stella3.png"></div>
<p class="chat-message">Hello!</p>
</div>
<div class="chat friend" id="loadingGif" style="display: none;">
<div class="user-photo"><img src="Images/stella2.jpg"></div>
<div class="gif"><img src="Images/loading.gif"></div>
</div>
</div>
</div>
<div class="chat-form">
<div id="inputDiv">
<div id="buttonDiv"></div>
<textarea class="input" placeholder="Message" rows="1" data-min-rows='1'></textarea>
</div>
<div id="chat-form-buttons">
<input type ="image"id="rec" src="Images/microphone.png">
<input type="image" src="Images/keyboard.png" id="switchInputType"/>
</div>
</div>
<script type="text/javascript" src="index.js"></script>
</body>
</html>