added the chat agent
This commit is contained in:
parent
46d5a1e4ae
commit
a44d212593
2 changed files with 40 additions and 9 deletions
|
@ -262,11 +262,6 @@ input:invalid+span:after {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
content: '✖';
|
content: '✖';
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
<<<<<<< HEAD
|
|
||||||
}
|
|
||||||
|
|
||||||
input:valid+span:after {
|
|
||||||
=======
|
|
||||||
}
|
}
|
||||||
|
|
||||||
input:valid+span:after {
|
input:valid+span:after {
|
||||||
|
@ -286,8 +281,6 @@ input:valid+span:after {
|
||||||
|
|
||||||
/* Footer section */
|
/* Footer section */
|
||||||
|
|
||||||
#footer {}
|
|
||||||
|
|
||||||
.social-icon {
|
.social-icon {
|
||||||
margin: 20px 10px;
|
margin: 20px 10px;
|
||||||
}
|
}
|
||||||
|
@ -355,3 +348,22 @@ input[type=submit] {
|
||||||
input[type=submit]:hover {
|
input[type=submit]:hover {
|
||||||
background-color: #fa4664;
|
background-color: #fa4664;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.agent-box{
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
#chat-bot{
|
||||||
|
display: none;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#bot-display{
|
||||||
|
|
||||||
|
}
|
||||||
|
.bot-icon{
|
||||||
|
color: #34626c;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bot-icon:hover {
|
||||||
|
color: rgb(216, 181, 24);
|
||||||
|
}
|
23
index.html
23
index.html
|
@ -27,7 +27,7 @@
|
||||||
<section class="colored-section2" id="title">
|
<section class="colored-section2" id="title">
|
||||||
|
|
||||||
<div class="container-fluid">
|
<div class="container-fluid">
|
||||||
<img src="images/logo2.png" style="float:left;width:42px;height:42px; margin-right:20px; margin-top:10px">
|
<img src="images/logo2.png" style="float:left;width:42px;height:42px; margin-right:20px; margin-top:10px" alt="brand-img">
|
||||||
|
|
||||||
<!-- Nav Bar -->
|
<!-- Nav Bar -->
|
||||||
<nav class="navbar navbar-expand-lg navbar-dark">
|
<nav class="navbar navbar-expand-lg navbar-dark">
|
||||||
|
@ -437,10 +437,18 @@
|
||||||
<br>
|
<br>
|
||||||
<button type="button" class="btn btn-lg btn-outline-success" id="submitButton" onclick="validateForm()">Submit</button>
|
<button type="button" class="btn btn-lg btn-outline-success" id="submitButton" onclick="validateForm()">Submit</button>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
|
<!-- Dialog flow bot -->
|
||||||
|
<div class="agent-box">
|
||||||
|
<iframe id="chat-bot" height="400" width="500" src="https://bot.dialogflow.com/d854ce2a-8fb4-41a4-9fa8-9e498be1accf"></iframe>
|
||||||
|
<div id="bot-display">
|
||||||
|
<i class="fas fa-comments-alt fa-3x bot-icon"></i>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
|
||||||
<!-- Footer -->
|
<!-- Footer -->
|
||||||
|
|
||||||
<footer class="colored-section2" id="footer">
|
<footer class="colored-section2" id="footer">
|
||||||
|
@ -457,6 +465,17 @@
|
||||||
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
|
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
|
||||||
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
|
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
|
||||||
<script src="scripts/index.js" charset="utf-8"></script>
|
<script src="scripts/index.js" charset="utf-8"></script>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
|
||||||
|
const chatBot = document.getElementById("chat-bot")
|
||||||
|
const botBtn = document.getElementById("bot-display")
|
||||||
|
|
||||||
|
botBtn.addEventListener('click', () => {
|
||||||
|
chatBot.style.display === 'none' ? chatBot.style.display = 'inline-block' : chatBot.style.display = 'none';
|
||||||
|
})
|
||||||
|
|
||||||
|
</script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue