-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlive-chat.php
56 lines (53 loc) · 1.73 KB
/
live-chat.php
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
<html lang="en">
<head>
<title>Live | Evoke'19</title>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="js/chat.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style type="text/css">
body{
background-image: url('https://i.imgur.com/h1XimvD.jpg');
width: 100%;
height: 100%;
}
.custom1{
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
.custom2 {
color: #fff;
background-color: #9c27b0;
border-color: #9c27b0;
box-shadow: 0 2px 2px 0 rgba(156,39,176,.14), 0 3px 1px -2px rgba(156,39,176,.2), 0 1px 5px 0 rgba(156,39,176,.12);
}
.box1 { width: 90%; margin: 0 auto;height: auto; border: 2px solid black;padding: 10px; }
/* div { width: 400px;height: 450px;overflow: auto } */
.userInput{float: left;
color: #FFFFFF;}
.responseData{float:right;
color:#FFFFFF;}
/* #input { width: auto; } */
button { width: 50px; }
</style>
</head>
<body >
<div class="container">
<a href="index.php"><img class="custom1" src="https://i.imgur.com/4UEClcA.png"></a>
<div class="box1">
<div class = 'chatBox'>
</div>
<input id="input" type="text" style="width: 100%;">
<!-- <button type="button" class="custom2">send</button> -->
</div>
</div>
</body>
</html>