Spaces:
Sleeping
Sleeping
File size: 606 Bytes
32471ec |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
{% extends 'base.html' %} {% block content %}
<form method="post" class="buttons">
<h3>Enter The Chat Room</h3>
<div>
<label>Name:</label>
<input
type="text"
placeholder="Pick a name!"
name="name"
value="{{name}}"
/>
</div>
<div class="join">
<input type="text" placeholder="Room Code" name="code" value="{{code}}" />
<button type="submit" name="join">Join a Room</button>
</div>
<button type="submit" name="create" class="create-btn">Create a Room</button>
{% if error %}
<ul>
<li>{{error}}</li>
</ul>
{% endif %}
</form>
{% endblock %}
|