<!DOCTYPE html>
<html>
<head>
    <title>Chatbot - Hotel Booking</title>
    <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
    <h1>Hotel Booking Chatbot</h1>
    <div id="chatbot"></div>
    <script src="https://cdn.jsdelivr.net/npm/gradio"></script>
    <script>
        gr.Interface({
            src: "/chatbot"
        }).render("#chatbot");
    </script>
</body>
</html>