-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedit-task.php
95 lines (87 loc) · 2.78 KB
/
edit-task.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?php
session_start();
if (isset($_SESSION['role']) && isset($_SESSION['id']) && $_SESSION['role'] == "admin") {
include "DB_connection.php";
include "app/Model/Task.php";
include "app/Model/User.php";
if (!isset($_GET['id'])) {
header("Location: tasks.php");
exit();
}
$id = $_GET['id'];
$task = get_task_by_id($conn, $id);
if ($task == 0) {
header("Location: tasks.php");
exit();
}
$users = get_all_users($conn);
?>
<!DOCTYPE html>
<html>
<head>
<title>Edit Task</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<input type="checkbox" id="checkbox">
<?php include "inc/header.php" ?>
<div class="body">
<?php include "inc/nav.php" ?>
<section class="section-1">
<h4 class="title">Edit Task <a href="tasks.php">Tasks</a></h4>
<form class="form-1"
method="POST"
action="app/update-task.php">
<?php if (isset($_GET['error'])) {?>
<div class="danger" role="alert">
<?php echo stripcslashes($_GET['error']); ?>
</div>
<?php } ?>
<?php if (isset($_GET['success'])) {?>
<div class="success" role="alert">
<?php echo stripcslashes($_GET['success']); ?>
</div>
<?php } ?>
<div class="input-holder">
<lable>Title</lable>
<input type="text" name="title" class="input-1" placeholder="Full Name" value="<?=$task['title']?>"><br>
</div>
<div class="input-holder">
<lable>Description</lable>
<textarea name="description" rows="5" class="input-1" ><?=$task['description']?></textarea><br>
</div>
<div class="input-holder">
<lable>Snooze</lable>
<input type="date" name="due_date" class="input-1" placeholder="Snooze" value="<?=$task['due_date']?>"><br>
</div>
<div class="input-holder">
<lable>Assigned to</lable>
<select name="assigned_to" class="input-1">
<option value="0">Select employee</option>
<?php if ($users !=0) {
foreach ($users as $user) {
if ($task['assigned_to'] == $user['id']) { ?>
<option selected value="<?=$user['id']?>"><?=$user['full_name']?></option>
<?php }else{ ?>
<option value="<?=$user['id']?>"><?=$user['full_name']?></option>
<?php } } } ?>
</select><br>
</div>
<input type="text" name="id" value="<?=$task['id']?>" hidden>
<button class="edit-btn">Update</button>
</form>
</section>
</div>
<script type="text/javascript">
var active = document.querySelector("#navList li:nth-child(4)");
active.classList.add("active");
</script>
</body>
</html>
<?php }else{
$em = "First login";
header("Location: login.php?error=$em");
exit();
}
?>