-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgroupForm.php
More file actions
32 lines (22 loc) · 1.13 KB
/
groupForm.php
File metadata and controls
32 lines (22 loc) · 1.13 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
<?php
session_start();
if (empty($_SESSION["name"]))
{
header("Location:index.php");
}
echo '
<div id = "groupchat">
<center style = "margin-top:10px;width:104%;">
<form method = "POST" action="group.php" enctype ="multipart/form-data">
<input style="width:200px;margin-bottom: 10px;" required name = "group_name" class="form-control" placeholder="Group name" type = "text"/>
<input style="width:200px;margin-bottom: 10px;"required name = "group_desc" class="form-control" placeholder="Description" type = "text"/>
<input type = "file" style="width:200px;margin-bottom: 10px;" required name = "profile_pic" /><br>
<i style="color:red; font-size:13px;">'; if (isset($_SESSION["errForGroup"])) {
echo $_SESSION["errForGroup"];}
echo '</i><br>
<input class="btn btn-success" name ="submitForm" type="submit" value="Finish" style="margin-top:0px;width:200px;margin-bottom:100px" />
</form>
</center>
</div>
';
?>