31 lines
1.5 KiB
PHP
Executable File
31 lines
1.5 KiB
PHP
Executable File
<div class="row">
|
|
<div class="col-md-12 text-center">
|
|
<img src="<?= Yii::$app->params['greetingUrl'] ?>/<?= Yii::$app->session['greeting']['img'] ?>" title="<?= Yii::$app->session['greeting']['name'] ?>" class="img-fluid center-img" style="padding: 100px;padding-bottom: 0px;">
|
|
<h4 style="color: <?= Yii::$app->session['greeting']['color'] ?>; font-weight: bold; position: relative;bottom: 40px;">
|
|
<?= Yii::$app->session['greeting']['description'] ?>
|
|
<br />
|
|
<?= Yii::$app->session['greeting']['description2'] ?>
|
|
<br />
|
|
<?php
|
|
if (Yii::$app->session['greeting']['btn_status1'] !== null) {
|
|
echo Yii::$app->params['greeting'];
|
|
}
|
|
?>
|
|
<br>
|
|
<a href="<?= Yii::$app->homeUrl ?>" class="btn btn-outline-light" style="color: <?= Yii::$app->session['greeting']['color'] ?>; font-weight: bold;">เข้าสู่เว็บไซต์<img src=""></a>
|
|
|
|
<!---->
|
|
<?php
|
|
if (Yii::$app->session['greeting']['btn_status1'] === 1) {
|
|
$color = Yii::$app->session['greeting']['color'] ?? 'white';
|
|
$home = Yii::$app->homeUrl;
|
|
echo '<a href="https://kokjan.go.th/bless" class="btn btn-outline-light" style="color: ' . $color . '; font-weight: bold;">ลงนามถวายพระพร<img src=""></a>';
|
|
}
|
|
?>
|
|
|
|
|
|
</h4>
|
|
|
|
|
|
</div>
|
|
</div>
|