-
Notifications
You must be signed in to change notification settings - Fork 0
/
chat.html
25 lines (25 loc) · 870 Bytes
/
chat.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="jquery-3.7.1.min.js"></script>
<script src="ajax.js"></script>
<title>Chat</title>
</head>
<body>
<div class='container mt-5'>
<textarea class="form-control mb-3" rows="20" id="chat" readonly></textarea>
<div class="row">
<div class="col-3">
<input type="text" id="name" placeholder="Jméno" class="form-control mb-3">
</div>
<div class="col">
<input type="text" id="input" placeholder="Zpráva" class="form-control mb-3">
</div>
</div>
<button class="btn btn-dark btn-sm" id="btn">Odeslat</button>
</div>
<script src="ajax.js"></script>
</body>
</html>