<?php /** * Mainly a response to Pjax request, this site contains a single line of text. */ use yii\helpers\Html; use kartik\widgets\ActiveForm; use common\models\SignupForm; use common\models\User; use yii\helpers\Url; use yii\bootstrap\Modal; use yii\widgets\Pjax; /* @var $this yii\web\View */ ?> <div class="site-save"> <div class="col-sm-12 col-md-6"> <?php Pjax::begin(); ?> <p><strong>This record has been added to your basket!</strong></p> <?php Pjax::end(); ?> </div> </div>