Courses.php: better spacing

Bug430-Eden2
Lan Hui 2023-09-08 19:42:49 +08:00
parent 849009e624
commit 33e454e3da
1 changed files with 22 additions and 23 deletions

View File

@ -579,20 +579,19 @@ include 'Header.php';
$url = $row['URL'];
$id = $row['Course_ID'];
$status = $row['Status'];
if($status=="Joined")
{
echo "<a href='~\..\Course.php?url=$url'> <div class='btn btn-default' style='word-wrap:break-word'>
($code) - $name <br>($url) &nbsp;&nbsp;&nbsp; <i class='fa fa-check-circle'></i> $status &nbsp;&nbsp;&nbsp;&nbsp;
<br> <span style='font-size:8pt'>Faculty: $faculty &nbsp; Year: $academic_year &nbsp; Lecturer: $lecturer </span></div></a>
";
}
else
{
if($status == "Joined") {
echo "<a href='~\..\Course.php?url=$url'>
<div class='btn btn-default' style='word-wrap:break-word'>
($code) $name <br>
($url) &nbsp;&nbsp;&nbsp; <i class='fa fa-check-circle'></i> $status &nbsp;&nbsp;&nbsp;&nbsp; <br>
<span style='font-size:8pt'>Faculty: $faculty &nbsp; Year: $academic_year &nbsp; Lecturer: $lecturer </span>
</div>
</a>";
} else {
echo "<div class='btn btn-default'>
($code) - $name <i class='btn btn-sm btn-danger'> $status</i>
<br> <span style='font-size:8pt'>Faculty: $faculty &nbsp; Year: $academic_year &nbsp; Lecturer: $lecturer </span></div>
";
($code) $name <i class='btn btn-sm btn-danger'> $status</i> <br>
<span style='font-size:8pt'>Faculty: $faculty &nbsp; Year: $academic_year &nbsp; Lecturer: $lecturer </span>
</div>";
}
}
}