-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgroup.php
52 lines (41 loc) · 1.68 KB
/
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
<?php
session_start();
include("server/DBconnect.php");
$course_id = $_REQUEST['course'];
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel = "stylesheet" href = "css/dnd.css" type = "text/css" media = "screen" />
<link rel = "stylesheet" href = "css/main.css" type = "text/css" media = "screen" />
<link rel = "stylesheet" href = "css/course.css" type = "text/css" media = "screen" />
<link rel = "stylesheet" href = "css/popup.css" type = "text/css" media = "screen" />
<link rel = "stylesheet" href = "css/assignment.css" type = "text/css" media = "screen" />
<script type="text/javascript" src="script/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="script/course.js"></script>
<script type="text/javascript" src="script/assignment.js"></script>
<script type="text/javascript" src="script/DnD.js"></script>
<title></title>
</head>
<body>
<?php include 'header.php' ?>
<div id="content" class="content" course-id="<?php echo $course_id?>" >
<table id="cards-table">
</table>
<div id='generator' class="addbutton"><header><a href="#"><img class="addimg" src="image/add.png"/></a>Click to add groups</header></div>
<div class="submit">
<table>
<tr>
<td><input id="submitButton" type="submit" value="submit"/></td>
<td><input id="disbandButton" type="submit" value="disband all groups"/></td>
<td><input id="refresh" type="submit" value="refresh"/></td>
</tr>
</table>
</div>
<br>
<div id="columns" class="group">
</div>
</div>
</body>
</html>