forked from Mahmoudb7/faculty_meeting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadd_decision.php
103 lines (96 loc) · 5.33 KB
/
add_decision.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
96
97
98
99
100
101
102
103
<?php
require_once "db.php";
require_once "functions.php";
if (session_status() === PHP_SESSION_NONE) {
session_start();
}
?>
<!DOCTYPE html>
<html lang="en">
<?php Head("اضافة قرار"); ?>
<body dir="rtl">
<?php Headers(); ?>
<?php if (is_admin()): ?>
<?php if ($_SERVER["REQUEST_METHOD"] === "POST") { ?>
<?php Nav(); ?>
<main class="add-member-page">
<div class="container">
<!-- عنوان الصفحة -->
<div class="title">
<h1>إضافة قرار</h1>
</div>
<form class="box" method="post" action="addition_code.php" enctype="multipart/form-data">
<div class="col">
<div class="row sp-row">
<h4>نوع القرار</h4>
<div class="row ">
<?php
$decision_types_stmt = $conn->prepare("SELECT * FROM p39_decision_type");
$decision_types_stmt->execute();
$decision_types_result = $decision_types_stmt->get_result();
while ($decision_types_row = $decision_types_result->fetch_assoc()) { ?>
<div class="col">
<h5><?= $decision_types_row["decision_type_name"] ?></h5>
<input type="radio" name="decision_type"
value="<?= $decision_types_row['decision_type_id'] ?>">
</div>
<?php } ?>
<?php $decision_types_stmt->close(); ?>
</div>
</div>
<div class="row">
<h4>تفاصيل القرار</h4>
<textarea name="decision_details"></textarea>
</div>
<div class="row sp-row">
<h4>هل له جواب تنفيذي؟</h4>
<div class="row ">
<div class="col">
<h5>نعم</h5><input class="resp-yes" type="radio" name="needs_action" value="1"
required aria-required="true">
</div>
<div class="col">
<h5>لا</h5><input class="resp-no" type="radio" name="needs_action" value="0"
required aria-required="true">
</div>
</div>
</div>
<div class="row resp-to deactive">
<h4>الجواب التنفيذي موجه لـ</h4>
<input type="text" name="action_to" placeholder="الجهة الموجه لها الجواب التنفيذي"/>
</div>
<div class="row">
<h4>ملاحظات</h4>
<textarea name="decision_comments"></textarea>
</div>
<!-- <div class="row sp-row">-->
<!-- <h4>هل تم تنفيذ القرار؟</h4>-->
<!-- <div class="row ">-->
<!-- <h5>نعم</h5><input type="radio" name="is-done">-->
<!-- <h5>لا</h5><input type="radio" name="is-done">-->
<!-- </div>-->
<!-- </div>-->
<div class="row">
<input type="hidden" name="subject_id" value="<?= $_POST['subject_id'] ?>">
<input type="hidden" name="meeting_id" value="<?= $_POST['meeting_id'] ?>">
<button type="submit" class="btn-basic" name="add_decision_btn">اضافة قرار للموضوع</button>
</div>
</div>
</form>
</div>
</main>
<?php } else { ?>
<p style="color: red; font-weight: bold; text-align: center;">
يجب استخدام POST لتحميل الصفحة. سيتم تحويلك إلى صفحة المجالس بعد 5 ثواني. أو اضغط<a href="meetings.php">
هنا</a>
</p>
<?php header("refresh: 5; url= meetings.php"); ?>
<?php } ?>
<?php endif; ?>
<?php footer(); ?>
<!-- Js Scripts and Plugins -->
<script type="module" src="./js/main.js"></script>
<!-- font Awesome -->
<script src="https://kit.fontawesome.com/eb7dada2f7.js" crossorigin="anonymous"></script>
</body>
</html>