-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathedit_group.php
79 lines (66 loc) · 2.57 KB
/
edit_group.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Welcome</title>
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="index.css" type="text/css"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="container">
<?php include("pb_header.php"); ?>
<div class="container">
<div class="col-lg-8" style="margin-top:80px;">
<h2>Edit Group</h2>
<input class="form-control" type="text" placeholder="Group Name">
</div>
</div>
</div>
<div class="col-sm-5" style="margin-left:80px;margin-top:80px">
<div class="panel panel-default" style="margin-left=100px;margin-top=80px">
<div class="panel-heading">Group Member</div>
<div class="panel-body ">
<table class="table table-condensed table-summary table-borderless ">
<tbody>
<tr>
<th>Participants Names</th>
<th>Remarks</th>
</tr>
<tr>
<td>Dilip</td>
<td class="dropdown"><a class="btn btn-primary actionButton"
data-toggle="dropdown" href="#"> Delete </a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="col-sm-5" style="margin-left:80px;margin-top:80px">
<div class="panel panel-default">
<div class="panel-heading">Add Members</div>
<div class="panel-body ">
<table class="table table-condensed table-summary table-borderless ">
<tbody>
<tr>
<th>Participants Names</th>
<th>Remarks</th>
</tr>
<tr>
<td>Govind</td>
<td class="dropdown"><a class="btn btn-primary actionButton"
data-toggle="dropdown" href="#"> ADD</a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="clearfix">
</div>
<center><a type="button" name="update" href="main.php" class="btn btn-primary" style="margin-top:80px;margin-left:80px;">update</a></center>
</body>
</html>