-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcreate_group.php
42 lines (32 loc) · 1.34 KB
/
create_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
<!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">
<link rel="stylesheet" href="index.css" type="text/css"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="container-fluid">
<?php include("pb_header.php"); ?>
<div class="row" style="margin-top:80px;">
<div class="row">
<div class="container">
<div class="col-lg-8" style="margin-bottom:10px;">
<h2>Create Group</h2>
<form action="#" id="xyz" method="GET">
<input class="form-control" type="text" placeholder="Group Name" name="group_name">
<div>
<a type="button" class="btn btn-primary"style="margin-top:80px;" href="main.php">Save</a>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</body>
<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>
</html>