-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
21 lines (16 loc) · 748 Bytes
/
index.php
File metadata and controls
21 lines (16 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
include "util.php";
$form = "
<h1>Course Website</h1>
<br>
<div class='mx-auto p-2' align=center><button type='button' class='btn btn-light'><a href='login_student_table.php'>Login as Student</a></button></div>
<br>
<div class='mx-auto p-2' align=center><button type='button' class='btn btn-light'><a href='login_instructor_table.php'>Login as Instructor</a></button></div>
<br>
<div class='mx-auto p-2' align=center><button type='button' class='btn btn-light'><a href='join_student_table.php'>Join as Student</a></button></div>
<br>
<div class='mx-auto p-2' align=center><button type='button' class='btn btn-light'><a href='join_instructor_table.php'>Join as Instructor</a></button></div>
";
$form_h = basis($form, "");
echo $form_h;
?>