54 lines
1.7 KiB
PHP
Executable File
54 lines
1.7 KiB
PHP
Executable File
<?php
|
|
|
|
use common\models\Bless;
|
|
use yii\helpers\Html;
|
|
$this->title = 'ลงนามถวายพระพร องค์การบริหารส่วนตำบลบอน';
|
|
?>
|
|
|
|
<?php
|
|
$this->registerCss("
|
|
.post-content img {
|
|
max-width:100%;
|
|
height:auto!important;
|
|
}
|
|
");
|
|
?>
|
|
<style>
|
|
.greeting-bg {
|
|
background: url("<?=Yii::$app->params['greetingUrl']?>/<?=Yii::$app->session['greeting']['background']?>");
|
|
min-height: 100%;
|
|
background-position: center center;
|
|
background-size: cover;
|
|
}
|
|
</style>
|
|
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-12 text-center greeting-bg post-content">
|
|
<img src="<?=Yii::$app->params['greetingUrl']?>/<?=Yii::$app->session['greeting']['img']?>" alt="<?=Yii::$app->session['greeting']['name']?>">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-md-12 text-center">
|
|
<h1>ลงนามถวายพระพรออนไลน์</h1>
|
|
<h3>
|
|
<?=Yii::$app->session['greeting']['description']?>
|
|
<br>
|
|
<?=Yii::$app->params['greeting']?></h3>
|
|
<?= Html::a('ลงนามถวายพระพร', ['/bless/create'], ['class' => 'btn btn-outline-light','style' => 'background-color: #c78935']) ?>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-md-12 text-center">
|
|
<div style="color: #10cb78"><h5>จำนวนผู้ร่วมลงนาม :
|
|
<span><?= Bless::find()->count() ?></span> คน</h5>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|