return $model->signup();if($model->signup()){
Yii::$app->session->setFlash('success', Yii::t('app','FLASH_EMAIL_CONFIRM_REQUEST'));
return $this->goHome();
}
<?= $form->field($formRegister, 'email', ['enableAjaxValidation'=>true, 'validateOnType' => true])->textInput() ?>
$form = ActiveForm::begin(['id' => 'form-signup'])

<?php
$js = <<<JS
$('#contact-form').on('beforeSubmit', function(){
alert('Работает!'); // Даже этот alert не работает
return false;
});
JS;
$this->registerJs($js, View::POS_END);
?>