mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 18:12:26 +03:00
16 lines
266 B
PHP
16 lines
266 B
PHP
<?php extend('layouts/message_layout') ?>
|
|
|
|
<?php section('content') ?>
|
|
|
|
<div>
|
|
<img id="message-icon" src="<?= $message_icon ?>" alt="warning">
|
|
</div>
|
|
|
|
<div>
|
|
<h3><?= $message_title ?></h3>
|
|
|
|
<p><?= $message_text ?></p>
|
|
</div>
|
|
|
|
<?php section('content') ?>
|
|
|