-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindividual_chat.html
90 lines (77 loc) · 3.25 KB
/
individual_chat.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<!-- bootstrap cdns start -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<!-- bootstrap cdns end -->
<!-- style sheets start-->
<link rel="stylesheet" href="style.css">
<!-- style sheet ends -->
</head>
<body>
<!-- navbar start -->
<nav class="navbar navbar-expand-md navbar-dark bg-dark fixed-top">
<!-- container start -->
<div class="container">
<a class="navbar-brand" href="#">KDCHAT</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText"
aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#aboutus">AboutUs</a>
</li>
</ul>
<ul class="navbar-nav justify-content-end">
<li class="nav-item" id="logout">
<a class="nav-link" href="#"> LogOut</a>
</li>
</ul>
</div>
</div>
<!-- container end -->
</nav>
<!-- navbar end -->
<div class="container">
<div id="chatheader" class="row border border-primary mb-2">
<img class="img-fluid rounded-circle justify-content-start col-sm-2" id="chatheaderimg">
<h2 class="col-sm-6 text-center mt-4"></h2>
<h2 class="col-sm-4 text-right mt-4" id="chatheadername"></h2>
</div>
<div id="chatbody" class="border border-primary mt-3 pr-0 pl-0">
</div>
</div>
<div class="text-center container" id="chatform">
<h2>SEND MESSAGE</h2>
<div class="form-group">
<input type="text" class="form-control mt-3" id="snd_msg" placeholder="Enter The Message">
</div>
<div class="form-group">
<input type="file" class="form-control-file border" name="file" id="file">
</div>
<p class="mt-3 mb-2" id="snd_err"></p>
<button type="submit" class="btn btn-primary mt-3" id="snd_btn">Send</button>
</div>
<!-- footer start -->
<div class="container footer text-center mt-4">
<span>KDCHAT</span>
</div>
<!-- footer end -->
<!-- scripts start -->
<script src="logout.js"></script>
<script src="individual_chat.js"></script>
<!-- scripts end -->
</body>
</html>