19 lines
555 B
HTML
19 lines
555 B
HTML
{% extends 'room_base.html' %}
|
|
{% block title %}Echo | Room {{ room_code }}{% endblock %}
|
|
{% block content %}
|
|
<h1>Room {{ room_code }}</h1>
|
|
<div class="chat-container">
|
|
<div id="chat-box"></div>
|
|
<div class="chat-input-container">
|
|
<input type="text" id="chat-input" placeholder="Say something..." />
|
|
<button id="send-button">Send</button>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
const room = "{{ room_code }}";
|
|
</script>
|
|
|
|
<script src="{{ url_for('static', filename='js/room.js') }}"></script>
|
|
{% endblock %}
|