forked from mirrors/easyappointments
18 lines
270 B
PHP
18 lines
270 B
PHP
|
<?php
|
||
|
/**
|
||
|
* @var string $message_title
|
||
|
* @var string $message_icon
|
||
|
* @var string $message_text
|
||
|
*/
|
||
|
?>
|
||
|
|
||
|
<div>
|
||
|
<img id="message-icon" src="<?= $message_icon ?>" alt="warning">
|
||
|
</div>
|
||
|
|
||
|
<div>
|
||
|
<h3><?= $message_title ?></h3>
|
||
|
|
||
|
<p><?= $message_text ?></p>
|
||
|
</div>
|