-
Notifications
You must be signed in to change notification settings - Fork 19
/
Chat-Forum.htm
115 lines (82 loc) · 3.17 KB
/
Chat-Forum.htm
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html>
<head>
<title>Chat-Forum</title>
<meta name="description" content="Select the chatroom you would like to join, or create a new one yourself."/>
<link rel="stylesheet" href="/"/>
<link rel="stylesheet" href="/"/>
<link rel="stylesheet" href="/"/>
<link rel="stylesheet" href="/"/>
<link rel="stylesheet" href="/"/>
</head>
<body>
<div id="Header">
<div id="HeaderRelativeWrapper">
<div id="HeaderUserArea">
<img id="HeaderAvatar" src="/"/>
<div id="HeaderUsername"></div>
</div>
<div id="HeaderMessageNotificationArea">
<img id="HeaderMessageNotificationIcon" src="/Resources/Icons/Misc/chatNotificationHeaderIcon.png"/>
<div id="HeaderMessageNotificationCounter">0</div>
</div>
<a href="/browse">
<img id="HeaderLogo" src="" alt="ChatForum"/>
</a>
</div>
</div>
<div id="Footer">
<a href="/browse">
Find Channel
</a>
<a href="/room/create" target="_blank">
Create new Channel
</a>
<a href="/widget/example" target="_blank">
Add ChatForum to your website
</a>
<a href="/contact" target="_blank">
Contact us
</a>
<a href="/development" target="_blank">
Second-Chance Project
</a>
</div>
<div id="AccountPanelPopup">
<div id="AccountPanelPopupRelative">
<div id="AccountPanelPopupUsername">
</div>
<img id="AccountPanelPopupClose" src="/Resources/Icons/Misc/CloseButtonX.png"/>
<div id="LogoutWrapper" class="AccountPanelPopupOptionWrapper">
<img class="AccountPanelPopupImage" src="/Resources/Icons/Misc/LogoutIcon.png"/>
<div class="AccountPanelPopupLabel">Log out</div>
</div>
</div>
</div>
<div id="AbsoluteWrapper">
<div id="RelativeWrapper">
<h1 id="BrowseHeaderMain">
Find Channel
</h1>
<h2 id="BrowseHeaderSecondary">
Join a channel
</h2>
<div id="BrowseContainerHeader">
<div id="SearchChatroomWrapper">
<input id="SearchChatroomInput" type="text" placeholder="Find ChatForum"/>
<div id="SearchChatroomSubmitWrapper">
<img id="SearchChatroomSubmitIcon" src="/Resources/Icons/Misc/SearchBoxIcon.png"/>
</div>
</div>
<a id="CreateChatroomLink" href="/room/create">
<button id="CreateChatroomButton">Create A ChatForum</button>
</a>
</div>
<div id="SearchResultArea">
</div>
<div id="BrowseContainer">
</div>
</div>
</div>
</body>
</html>