-
Notifications
You must be signed in to change notification settings - Fork 0
/
addreferral.php
59 lines (48 loc) · 1.19 KB
/
addreferral.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
<?php
require_once('connectvars.php');
require_once('appfunctions.php');
$dbc = mysqli_connect(DB_HOST, DB_USER, DB_PASSWORD, DB_NAME);
$form_type = mysqli_real_escape_string($dbc, trim($_GET['type']));
$page_title = 'Add Referral';
$page_access = 'All';
include('header.php');
//include other scripts needed here
echo '<script src="js/forms_scripts.js"></script>';
//end header
echo '</head>';
//start body
echo '<body>';
//include nav bar
include('navbar-students.php');
?>
<div class="bd-pageheader bg-primary text-white pt-4 pb-4">
<div class="container">
<h1>
Students
</h1>
<p class="lead">
Manage students and interventions
</p>
</div>
</div>
<div class="container mt-5 mb-5">
<div class="row">
<div class="col-12">
<h1>
Add Referral
</h1>
<p class="lead">
Use this page to report a behavior incident.
</p>
<p>
<a class="btn btn-primary" href="referrals.php">Referrals</a>
</p>
<div class="alert alert-danger">Edhub services are moving to Schoork. Please use <a href="https://hollandale.schoork.com">Schoork</a> to submit referrals.
</div>
</div>
</div>
<?php
mysqli_close($dbc);
//include footer
include('footer.php');
?>