-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
135 lines (115 loc) · 5.15 KB
/
index.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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Primary Meta Tags -->
<title>Chat World</title>
<meta name="title" content="Chat World" />
<meta name="description" content="This is a simple Realtime Chat app using Firebase. Here you can chat with anyone without Login or SignUP. It
helps you to meet new people and make new friends." />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://chatapp.js.org/" />
<meta property="og:title" content="Chat World" />
<meta property="og:description" content="This is a simple Realtime Chat app using Firebase. Here you can chat with anyone without Login or SignUP. It
helps you to meet new people and make new friends." />
<meta property="og:image" content="./images/screenshot_pc.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://chatapp.js.org/" />
<meta property="twitter:title" content="Chat World" />
<meta property="twitter:description" content="This is a simple Realtime Chat app using Firebase. Here you can chat with anyone without Login or SignUP. It
helps you to meet new people and make new friends." />
<meta property="twitter:image" content="./images/screenshot_pc.png" />
<link rel="stylesheet" href="./stylesheets/main.min.css" />
<script async src="https://www.googletagmanager.com/gtag/js?id=G-KEZHDV7Y1X"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-KEZHDV7Y1X');
</script>
</head>
<body>
<header>
<div class="status-container">
<i class="led online"></i>
<span class="onlineCount"></span>
</div>
<div class="logo-container">
<h1>Chat World</h1>
</div>
<div class="settingIcon">
<img src="./images/settingIcon.svg" alt="" srcset="">
</div>
</header>
<div class="typingStatus">
<p></p>
</div>
<section class="welcomePage">
<h2>Welcome to <br> <span>Chat World</span></h2>
<form action="" method="get" id="inputUsername">
<input type="text" name="username" pattern="[A-Za-z0-9-\s_]{3,30}" autocomplete="username"
placeholder="Enter Your Name" required>
<input type="submit" value="Submit">
</form>
<div class="loader">
<div class="wave"></div>
<div class="wave"></div>
<div class="wave"></div>
<div class="wave"></div>
<div class="wave"></div>
<div class="wave"></div>
<div class="wave"></div>
<div class="wave"></div>
<div class="wave"></div>
<div class="wave"></div>
</div>
</section>
<main>
<div class="onlineUsersPage">
<h2>Online Users</h2>
<div class="onlineUsers-container">
</div>
</div>
<div class="chats"> </div>
<div class="settingsPage">
<h2>About</h2>
<p>This is a simple Realtime Chat app using Firebase. Here you can chat with anyone without Login or SignUP.
It helps you to meet new people and make new friends. <br> <br> View Source or contribute to this
project on <a href="https://github.com/devXprite/realtime-chat-app">GitHub</a> . </p>
<button class="sound">Turn Off Sound</button>
<button class="scroll">Turn Off Auto Scroll</button>
<button class="logout">LogOut</button><br>
<button class="viewSource">View Source</button><br>
<button class="bugReport">Report A Bug</button>
</div>
<form id="msgForm">
<input type="text" id="inputmsg" placeholder="write your message here..." minlength="2" maxlength="255"
autocomplete="off" required>
<button type="submit">
<img src="./images/paper-plane.png" alt="" srcset="">
</button>
</form>
</main>
<!-- scripts -->
<script src="./javascripts/firebase-app.min.js"></script>
<script src="./javascripts/firebase-database.min.js"></script>
<script src="./javascripts/jquery.min.js"></script>
<script src="./javascripts/lodash.min.js"></script>
<script src="./javascripts/gsap.min.js"></script>
<script src="./javascripts/spamFilter.js"></script>
<script src="./javascripts/linkify.min.js"></script>
<script src="./javascripts/linkify-string.min.js"></script>
<script src="./javascripts/modernizr.min.js"></script>
<script src="./javascripts/moment.min.js"></script>
<script src="./javascripts/moment-timezone-with-data.min.js"></script>
<script src="./javascripts/xss.min.js"></script>
<script src="./javascripts/countlyFlags.min.js"></script>
<script src="./firebaseConfig.js"></script>
<script src="./javascripts/main.js"></script>
</body>
</html>