-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
81 lines (56 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<title> SocketChat </title>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<meta http-equiv = "X-UA-Compatible" content = "IE=edge">
<meta name = "viewport" content = "width=device-width, initial-scale=1.0">
<link rel = "stylesheet" href = "css/bootstrap.min.css">
<script src = "js/jquery-3.4.1.min.js" type = "text.js"></script>
<script src = "js/popper.min.js" type = "text/js"></script>
<script src = "js/bootstrap.min.js" type = "text/js"></script>
<script defer src = "http://localhost:3000/socket.io/socket.io.js"></script>
<script defer src = "client/script.js"></script>
<!-- Go -->
</head>
<body>
<!-- Navigation bar -->
<nav class="navbar navbar-expand-md navbar-dark bg-dark sticky-top">
<button class = "navbar-toggler" data-toggle = "collapse" data-target = "#navbar_links">
<span class = "navbar-toggler-icon"></span>
</button>
<a class = "navbar-brand" href = "index.php">
SocketChat
</a>
<div class = "collapse navbar-collapse" id = "navbar_links">
<ul class = "navbar-nav">
<li class = "nav-item">
<a class = "nav-link" href = "index.html"> Refresh </a>
</li>
</ul>
</div>
</nav>
<!-- Message Display Section -->
<div class = "container">
<div id = "message_display_container">
</div>
</div>
<!-- Message Typing section -->
<div class = "container fixed-bottom bg-dark rounded-top">
<center>
</br>
<div class = "col-1"></div>
<form name = "send_message">
<div class = "col-10">
<input type = "text" class="form-control form-control-sm mr-sm-2" name = "new_message" placeholder="Type message">
</div>
<div class = "col-2">
<button type = "submit" class="btn btn-sm btn-outline-success my-2 my-sm-0" name = "send_message_button">Send</button>
</div>
</form>
<div class = "col-1"></div>
</center>
</div>
</body>
</html>