-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainWindow.html
42 lines (38 loc) · 1.49 KB
/
mainWindow.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<html>
<head>
<link rel="stylesheet" href="mainWindow.css" type="text/css">
<title>LNM Technik</title>
<script src="http://kit.fontawesome.com/4380e5fb15.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="content-wrapper">
<div id="main-subcontent">
<div class="left-side">
<div class="chat-wrapper">
<div id="server-list" class="server-selector">
</div>
<div class="chat" id="chat">
</div>
<div class="chat-input">
<input id="chat-input-2">
</div>
</div>
</div>
<div class="right-side">
<div id="user-list" class="users">
</div>
<div class="account">
<div class="account-content">
<img
src="http://icons-for-free.com/iconfiles/png/512/agenda+app+contacts+online+profile+user+icon-1320183042135412367.png">
<div>
<span id="acc_name">Name</span>
</div>
</div>
</div>
</div>
</div>
<script src="renderer.js"></script>
</div>
</body>
</html>