|
<!DOCTYPE html> |
|
<html lang="en"> |
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}"> |
|
|
|
<head> |
|
<meta charset="UTF-8"> |
|
<title>Chatbot</title> |
|
</head> |
|
<body> |
|
|
|
<h2 align="center"></h2> |
|
<div class="container"> |
|
<div class="chatbox"> |
|
<div class="chatbox__support"> |
|
<div class="chatbox__header"> |
|
<div class="chatbox__image--header"> |
|
<img src="chatbox-icon.png" alt="image"> |
|
</div> |
|
<div class="chatbox__content--header"> |
|
<h4 class="chatbox__heading--header">Chatgpt prompt assistant</h4> |
|
|
|
</div> |
|
</div> |
|
<div class="chatbox__messages"> |
|
<div></div> |
|
</div> |
|
<div class="chatbox__footer"> |
|
<input type="text" placeholder="Write a message..."> |
|
<button class="chatbox__send--footer send__button">Send</button> |
|
</div> |
|
</div> |
|
<div class="chatbox__button"> |
|
<button><img src="{{ url_for('static', filename='images/chatbox-icon.svg') }}" /></button> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<script> |
|
$SCRIPT_ROOT = {{ request.script_root|tojson }}; |
|
</script> |
|
<script type="text/javascript" src="{{ url_for('static', filename='app.js') }}"></script> |
|
|
|
</body> |
|
</html> |