You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
690 B
18 lines
690 B
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css"
|
|
rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65"
|
|
crossorigin="anonymous">
|
|
</head>
|
|
<body>
|
|
<?php
|
|
foreach($TMessage as $err) {
|
|
echo '<div class="alert alert-danger alert-dismissible d-flex align-items-center fade show">
|
|
<i class="bi-exclamation-octagon-fill"></i>
|
|
<strong class="mx-2">Error!</strong>' . $err . "</div>";
|
|
}
|
|
?>
|
|
</body>
|
|
</html>
|