| Current Path : /var/www/html/ekursusv2/frontend/runtime/frontendpage/ |
| Current File : /var/www/html/ekursusv2/frontend/runtime/frontendpage/134_1742708482057644300-content-352.php |
<?php
/*** CONTENT_ID-352***/
use backend\modules\activities\models\Activities;
use frontend\models\Attendees;
$bg = 'https://'.$_SERVER['SERVER_NAME'].'/assets/img/background-aipa2.png';
$code = Yii::$app->getRequest()->getQueryParam('code');
if (($model = Attendees::findOne(['attendees_code' => $code])) !== null) {
$modelActivity = Activities::find()->where(['=','activity_id',$model->attendees_activity_id])->one();
if(!empty($modelActivity)){
if(!empty($modelActivity->activity_mobile_bg)){
$bg = 'https://'.$_SERVER['SERVER_NAME'].'/'.$modelActivity->activity_mobile_bg;
}
}
}
echo '<style>
.attendees-wrapper{
background-image:url('.$bg.');
background-size:cover;
background-position:center center;
background-repeat:no-repeat;
min-height: 100vh;
padding : 5em;
text-align:center;
position:relative;
width : 100%;
}
h1{
font-family:poppins;
margin-bottom:1em;
font-size:3em;
}
.copyright{
width : 100%;
text-align : center;
}
.btn-attendees{
display : block;
width : 100%;
margin-bottom : 1em;
text-align : center;
padding : 1em;
background:#0040aa;
color:white;
border-radius:20px;
font-size:2.5em;
}
</style>
<div class="attendees-wrapper">
<img src="/assets/img/logo-aipa.png" style="width:100%;margin-bottom:5em;">';
?>