-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconversations.html
More file actions
56 lines (50 loc) · 2.15 KB
/
Copy pathconversations.html
File metadata and controls
56 lines (50 loc) · 2.15 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
<meta charset="ISO-8859-1">
<title>Insert title here</title>
</head>
<body BGCOLOR="#000000" TEXT="#80c0c0" LINK="#ff8080">
<center>
<div id="wrap">
<div id="header">
<h1><a href="#">Chat Application</a></h1>
</div>
<div id="top"> </div>
<form>
<input type=button value="Friends" onclick="location='friends.html'">
      
<input type=button value="Groups" onclick="location='groups.html'">
      
<input type=button value="Conversations" onclick="location='conversations.html'" disabled>
      
      
      
      
Naveen Jetty      
<input type=button value="logout" onclick="location='login.html'">
<br><br><br>
<h2>Conversations</h2>
<br><br>
<input type=button value=friend1 disabled>
<input type=button value=group1>
<input type=button value=friend2>
<br><br>
<select name="Conversations" size="5" width=100>
<option>                                    Me:ssd</option>
<option>Friend1:sda</option>
<option>                                    Me:dgf</option>
<option>                                    Me:dfd</option>
<option>                                    Me:wew</option>
</select><br>
<input type=text value="Enter text" width=1000><input type=button value=send>
<br><br>
<br>
<br>
<input type=text value="Enter Group or friend to start a new conversation"><input type=button value=chat>
</form>
</div>
</center>
</body>
</html>