2024-08-14 18:16:56 +00:00
|
|
|
{% ELDEF main JSON pres %}
|
2024-08-19 16:25:21 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="ru">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>{% WRITE pres.phr.decl.list-of-chat-rooms %}</title>
|
|
|
|
<link rel="stylesheet" href="/assets/css/list-rooms.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
|
|
|
<h1 style="color: white;">{% WRITE pres.phr.decl.select-chat-room %}</h1>
|
|
|
|
<ul class="room-list">
|
|
|
|
<!-- Здесь будет список комнат -->
|
|
|
|
</ul>
|
|
|
|
<button class="create-room-button" onclick="openCreateRoomModal()">{% WRITE pres.phr.act.create-room %}</button>
|
|
|
|
</div>
|
2024-08-05 11:42:32 +00:00
|
|
|
|
2024-08-19 16:25:21 +00:00
|
|
|
<div id="passwordModal" class="modal">
|
|
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
|
|
|
<span class="close" onclick="closeModal()">×</span>
|
|
|
|
<h2>VVedite parol</h2> <!-- Nam ne nuzhen parol ot komnat -->
|
|
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
|
|
<input type="password" id="roomPassword" placeholder="Пароль">
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
|
|
<button class="join-button" onclick="validatePassword()">{% WRITE pres.phr.act.confirm %}</button>
|
|
|
|
</div>
|
2024-08-05 11:42:32 +00:00
|
|
|
</div>
|
2024-08-19 16:25:21 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Модальное окно для создания комнаты -->
|
|
|
|
<div id="createRoomModal" class="modal">
|
|
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
|
|
|
<span class="close" onclick="closeCreateRoomModal()">×</span>
|
|
|
|
<h2>{% WRITE pres.phr.decl.create-room %}</h2>
|
|
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
|
|
<input type="text" id="newRoomName" placeholder="{% WRITE pres.phr.decl.name-of-room %}">
|
|
|
|
<input type="password" id="newRoomPassword" placeholder="Пароль"> <!-- Fedya, nam ne nuzhen parol -->
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
|
|
<button class="join-button" onclick="createRoom()">{% WRITE pres.phr.act.create %}</button>
|
|
|
|
</div>
|
2024-08-05 11:42:32 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2024-08-19 16:25:21 +00:00
|
|
|
<script src="/assets/js/list-rooms.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|
2024-08-14 18:16:56 +00:00
|
|
|
{% ENDELDEF %}
|