-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (49 loc) · 1.84 KB
/
index.html
File metadata and controls
53 lines (49 loc) · 1.84 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Super Aplikacja</title>
<link rel="stylesheet" href="style.css" />
<link
href="https://fonts.googleapis.com/css?family=Oswald:300,400|Roboto:100,300,400|Lato:400,700"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"
integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/"
crossorigin="anonymous"
/>
</head>
<body>
<div class="titlebar">
<div class="titlebar-title">PG-Chat</div>
<div class="close-button button" id="close-button">X</div>
</div>
<div class="content" id="chat-loading">
Ładowanie..
<p id="chat-failedtoconnect">Problem z połączeniem z serwerem..</p>
</div>
<div class="content" id="chat-content">
<div class="first-line">
<div class="chat-window" id="chat"></div>
<div class="users-online">
<span class="header">Online</span>
<div class="users-online-list" id="users-online-list"></div>
</div>
</div>
<div class="second-line">
<div class="chat-textarea">
<textarea
id="message"
placeholder="Napisz wiadomość.."
></textarea>
</div>
<!-- <div class="chat-submit" style="visibility: hidden;"><button id="send">Wyślij</button></div> -->
</div>
</div>
<script src="titlebar.js"></script>
<!-- <script src="sockets.js"></script> -->
<script src="chat.js"></script>
</body>
</html>