forked from magician03/P2P-Chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (53 loc) · 2.52 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>P2P Chat Client</title>
<link rel="stylesheet" href="css/styles.css">
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection"/>
<link type="text/css" rel="stylesheet" href="css/styles.css" media="screen,projection"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body>
<div class="container">
<div class="row">
<div class="col s12 m12 l12 green lighten-1">
<h1 class="center">P2P Chat</h1>
</div>
<div id="peer-box" class="peer-box col s2 m2 l2 grey darken-3 white-text" style="border: 1px solid black">
<div class="peer-list">
<div class="peer">
someone
</div>
</div>
</div>
<div class="col s10 m10 l10 blue-grey lighten-5">
<div class="chatbox container" id="chat-window">
<div class="row">
<div class="my-chat col s8 m8 l8 left green lighten-1 white-text">
Lorem Ipsum
</div>
<div class="others-chat col s8 m8 l8 right grey lighten-2">
Lorem Ipsum
</div>
</div>
</div>
<div class="col s12 m12 l12 message-input">
<div class="row">
<form action="" id="message">
<div class="input-field">
<input type="text" placeholder="Enter your message" class="validate col s10" id="msg">
<button type="submit" form="message" class="btn waves-effect waves-light col s2 green lighten-1"><i class="material-icons">send</i></button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<script src="dummy.js"></script>
</body>
</html>