-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
72 lines (64 loc) · 3.86 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
<!DOCTYPE html>
<html>
<head>
<title>Real Time Public Chat</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="css/main.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css" type="text/css" rel="stylesheet" />
</head>
</head>
<body>
<div class="container">
<div id="namesList">
<div class="row align-items-center justify-content-center">
<div class="col">
<h2 class="text-primary" style="color: #274472"><b> Public Chat</b></h2>
<div id="error" role="alert"></div>
<p class="text-success" style="color: #274472"> Create Username to Chat</p>
<div class="form-group">
<form id="UsernameForm" class="form-group">
<input size="15" class="form-control" style="text-align: center; border: 1px #274472 solid; border-radius: 20px;" id="username">
<br>
<button type="submit" class="btn btn-primary" style="background-color: #274472" value="Send">Create</button>
</form>
</div>
</div>
</div>
</div>
<div id="mainWindow">
<h1 style="color: #274472; font-weight: bolder">Real Time Public Chat</h1>
<div class="messaging">
<div class="mesgs">
<div class="msg_history" id="chatWindow">
<div class="incoming_msg">
<div class="received_msg"></div>
<div class="outgoing_msg"></div>
</div>
</div>
<div class="type_msg">
<div class="input_msg_write">
<form id="messageForm">
<input id="message" type="text" class="write_msg" placeholder="Type a message..." />
<button class="msg_send_btn" type="submit"><i class="fa fa-paper-plane-o" aria-hidden="true"></i></button>
</form>
</div>
</div>
</div>
</div>
<div id="usersList">
<div id="users"></div>
</div>
</div>
<div style="position: absolute; font-size: 17; bottom: 2%; right: 5%; color: #274472">
Developed by <a target="_blank" style="color: #274472; font-size: 22; font-weight: bold" href="https://github.com/BisratYalew">Bisrat Yalew</a></div>
</div>
<script src="https://code.jquery.com/jquery-latest.min.js"></script>
<script src="/socket.io/socket.io.js"></script>
<script src="js/main.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="js/moment.min.js"></script>
</body>
</html>