-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
64 lines (54 loc) · 2.33 KB
/
index.html
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
53
54
55
56
57
58
59
60
61
62
63
64
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<title>Eliza</title>
<link rel="stylesheet" href="./assets/css/main.css"/>
<link rel="stylesheet" href="./assets/css/send.css"/>
<link rel="stylesheet" href="./assets/css/chat.css"/>
<link rel="stylesheet" href="./assets/css/notifications.css"/>
</head>
<body id="body">
<!--
Credit:
http://www.flaticon.com/free-icon/doctor_194824
-->
<!--
Chat Content goes here
It's loaded in dynamically with JS
-->
<div class="container">
<div class="row chat-row">
<div class="col-md-8 col-md-offset-2">
<span id="chat-area"></span>
</div>
</div>
</div>
<!-- Area to send a message and ownership info -->
<div class="container send-wrapper">
<div class="row">
<div class="col-md-8 col-md-offset-2 send-inner-wrapper">
<p class="send-message-help-text">Talk to Eliza by typing into the textbox below:</p>
<input type="text" class="send-textbox" />
<p class="send-message-help-below-text text-right">Send your message by pressing "Enter"</p>
<p class="bottom-label text-center">Built by <a href="https://github.com/kweaver00" target="_blank">Keith Weaver</a>. Modify it by forking the <a href="https://github.com/kweaver00/eliza" target="_blank">repo</a>.</p>
</div>
</div>
</div>
<!-- notifications.js appends notification html elements to this -->
<span id="notification-area">
</span>
<!-- Common Libraries -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<!-- Main Eliza Script -->
<script src="./js/eliza.js"></script>
<!-- Script that manages user actions -->
<script src="./js/actions.js"></script>
<!-- Script that has some demos and can be run based on user actions -->
<script src="./js/demo.js"></script>
<!-- Scripts that generates html to notify user -->
<script src="./js/notifications.js"></script>
</body>
</html>