mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-13 11:33:05 +03:00
19 lines
306 B
PHP
19 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() ?>
|