-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgroups.html
More file actions
61 lines (57 loc) · 1.55 KB
/
Copy pathgroups.html
File metadata and controls
61 lines (57 loc) · 1.55 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
<!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'" disabled>
      
<input type=button value="Conversations" onclick="location='conversations.html'">
      
      
      
      
Naveen Jetty      
<input type=button value="logout" onclick="location='login.html'">
<br><br><br>
<h2>Groups</h2><br><br>
Group List
      
      
      
      
Group 1
<br>
<select name=groups size=3>
<option>group1</option>
<option>group2</option>
<option>group3</option>
</select>      
      
      
      
<select name=group1 size=3>
<option>friend1</option>
<option>friend2</option>
<option>friend3</option>
</select>
<br><br><br>
<input type=text value="enter friend mail">
<input type=text value="enter group name">
<input type=button value="Add to group">
</form>
</div>
</center>
</body>
</html>