forked from mirrors/easyappointments
20 lines
306 B
PHP
20 lines
306 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>
|
||
|
|
||
|
<?php google_analytics_script() ?>
|