-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchatView.html
More file actions
129 lines (113 loc) · 7 KB
/
Copy pathchatView.html
File metadata and controls
129 lines (113 loc) · 7 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="index.css">
<title>WhatisUp</title>
</head>
<body>
<nav class="navbar fixed-top navbar-light bg-light">
<div class="d-flex justify-content-start">
<a href="index.html" class="navbar-brand" >
<i class="material-icons">
keyboard_backspace
</i>
</a>
<div class="p-0 bd-highlight"><img src="avatar2.png" width="40" height="40" class="d-inline-block align-top" alt="profile picture"></div>
<div class="p-1 bd-highlight">User Name</div></div>
<div class="d-flex justify-content-end">
<div class="p-2 bd-highlight"><i class="material-icons">
call
</i></div>
<div class="p-2 bd-highlight"><i class="material-icons">
videocam
</i></div>
</div>
</nav>
<div class="msg-body container d-flex flex-column">
<div class="row msg-received align-self-start align-items-center">
<div class="col-auto">
Hi!
</div>
<div class="msg-time col-3">
<span>11.30am</span>
</div>
</div>
<div class="msg-sent align-self-end row align-items-center">
<div class="col-9">
Hi, there how are you doing?
</div>
<div class="msg-time col-3">
<span>11.30am</span>
</div>
</div>
<div class="row msg-received align-self-start align-items-center">
<div class="col-9">
I am doing fine, what about you?
</div>
<div class="msg-time col-3">
<span>11.30am</span>
</div>
</div>
<div class="row msg-sent align-self-end align-items-center">
<div class="col-9">
I am doing great. Let's meet up at some place
</div>
<div class="msg-time col-3">
<span>11.30am</span>
</div>
</div>
<div class="row msg-received align-self-start align-items-center">
<div class="col-9">
Yeah sure it has been long.
</div>
<div class="msg-time col-3">
<span>11.30am</span>
</div>
</div>
<div class="row msg-sent align-self-end align-items-center">
<div class="col-9">
Yeah really, tell me the place and time, I will be there
</div>
<div class="msg-time col-3">
<span>11.30am</span>
</div>
</div>
<div class="row msg-received align-self-start align-items-center">
<div class="col-9">
Okay then this weekend, WhiteField Social
</div>
<div class="msg-time col-3">
<span>11.30am</span>
</div>
</div>
<div class="row msg-sent align-self-end align-items-center">
<div class="col-9">
Yeah sounds good! will see you there then
</div>
<div class="msg-time col-3">
<span>11.30am</span>
</div>
</div>
</div>
<div class="fixed-bottom no-gutter">
<div class="input-group">
<input type="text" class="form-control" id="messageBox">
<div class="input-group-append">
<button class="btn btn-outline-secondary" type="button" id="sendIcon">
<i class="material-icons">
send
</i></button>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
</body>
</html>