-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstatic.php
More file actions
152 lines (124 loc) · 4.67 KB
/
Copy pathstatic.php
File metadata and controls
152 lines (124 loc) · 4.67 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Dashboard</title>
<link rel="shortcut icon" type="image/png" href="images/logo.png">
<link href="https://fonts.googleapis.com/css2?family=Mulish:wght@400;700;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="fonts/icomoon/style.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/jquery-ui.css">
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<link rel="stylesheet" href="css/jquery.fancybox.min.css">
<link rel="stylesheet" href="css/bootstrap-datepicker.css">
<link rel="stylesheet" href="fonts/flaticon/font/flaticon.css">
<link rel="stylesheet" href="fonts/flaticon-covid/font/flaticon.css">
<link rel="stylesheet" href="css/aos.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="style.css" />
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular.min.js"></script>
<script src="script.js"></script>
</head>
<body data-spy="scroll" data-target=".site-navbar-target" data-offset="300">
<div id="overlayer">
<div class="loader">
<!-- <div class="spinner-border text-primary" role="status">
<span class="sr-only">Loading...</span>
</div> -->
</div>
<!-- CHAT BAR BLOCK -->
<aside>
<header>
<input type="text" placeholder="search">
</header>
<ul>
<a href="" alt="">
<li class="talking_to">
<img src="images/stockimage3.jpg" alt="">
<div>
<h2>Becky Fetcher</h2>
<h3>
<span class="status green"></span>
online
</h3>
</div>
</li>
</a>
<a href="static1.php" alt="">
<li>
<img src="images/stockimage1.jpg" alt="">
<div>
<h2>Johannah Doe</h2>
<h3>
<span class="status green"></span>
online
</h3>
</div>
</li>
</a>
<a href="static2.php" alt="">
<li>
<img src="images/stockimage2.jpg" alt="">
<div>
<h2>Rebecca Johnson</h2>
<h3>
<span class="status orange"></span>
offline
</h3>
</div>
</li>
</a>
</aside>
<div class="chat-bar-collapsible">
<button id="chat-button" type="button" class="collapsible">
<img class="conversation_with"src="images/stockimage3.jpg" alt="">
Becky Fetcher
<!-- Chat icon -->
<i id="chat-icon" style="color: #fff;" class="fa fa-fw fa-comments-o"></i>
</button>
<div class="content">
<div class="full-chat-block">
<!-- Message Container -->
<div class="outer-container">
<div class="chat-container">
<!-- Messages chatbox -->
<div id="chatbox">
<!-- Time stamp-->
<h5 id="chat-timestamp"></h5>
<p id="botStarterMessage" class="botText"><span>Give me a minute ...</span></p>
</div>
<!-- User input box -->
<div class="chat-bar-input-block">
<div id="userInput">
<input id="textInput" class="input-box" type="text" name="msg" placeholder="Press 'Enter' to send a message">
<p></p>
</div>
<div class="chat-bar-icons">
<i id="chat-icon" style="color: crimson;" class="fa fa-fw fa-heart"
onclick="heartButton()"></i>
<i id="chat-icon" style="color: #333;" class="fa fa-fw fa-send"
onclick="sendButton()"></i>
</div>
</div>
<!--Chat Bar Bottom-->
<div id="chat-bar-bottom">
<p></p>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
<!--JQuery File -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!--JS Files-->
<script src="responses.js"></script>
<script src="chat.js"></script>
</html>