|
<!DOCTYPE html> |
|
<html lang="en" dir="ltr"> |
|
<head> |
|
<meta charset="utf-8"> |
|
<title>Chat AI</title> |
|
<link rel="stylesheet" href="static\style.css"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" /> |
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@48,400,1,0" /> |
|
<script src="{{ url_for('static', filename='js/script.js') }}" defer></script> |
|
</head> |
|
<body> |
|
<button class="chatbot-toggler"> |
|
<span class="material-symbols-rounded">mode_comment</span> |
|
<span class="material-symbols-outlined">close</span> |
|
</button> |
|
<div class="chatbot"> |
|
<header> |
|
<img src="static/images/test.png" alt="Chatbot Icon" class="header-img"> |
|
<span class="close-btn material-symbols-outlined">close</span> |
|
</header> |
|
<ul class="chatbox"> |
|
<li class="chat incoming"> |
|
<span class="material-symbols-outlined">smart_toy</span> |
|
<p>Hello, welcome to meandb. <br>Can I answer any questions for you ?</p> |
|
</li> |
|
|
|
</ul> |
|
<div class="chat-input"> |
|
<textarea placeholder="Enter a message..." spellcheck="false" required></textarea> |
|
<button id="microphone-btn" class="material-symbols-rounded">mic</button> |
|
<span id="send-btn" class="material-symbols-rounded">send</span> |
|
</div> |
|
</div> |
|
<script src="static/js/script.js"></script> |
|
</body> |
|
</html> |
|
|