-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·42 lines (41 loc) · 1.38 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Intelligente Einkaufsliste (INEZ)</title>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="./app.css">
</head>
<body>
<center>
<img src="./eddi.jpg" class="img-responsive" width="50%">
<h1>Intelligente Einkaufsliste (INEZ) Chatbot </h1>
</center>
<hr>
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12">
<div class="row">
<div class="col-lg-8 col-md-6">
<input id="productinp" type="text" class="form-control" placeholder="Was benötigen Sie?">
</div>
<div class="col-lg-4 col-md-2">
<button type="submit" onclick="sendButton()" class="btn btn-success">Absenden</button>
</div>
</div>
</div>
<div class="col-lg-8 col-md-12 col-sm-4">
<hr>
<div id="chat">
</div>
<div id="productlist" class="list-group col-lg-8 col-md-12 col-">
</div>
</div>
</div>
<hr>
<b>(c) 2019 Karim Saad - Alle Rechte bei ihren jeweiligen Eigentümern</b>
</div>
<!-- You can also require other files to run in this process -->
<script src="./renderer.js"></script>
</body>
</html>