adding license

This commit is contained in:
Chris Smith
2025-02-23 22:34:05 +01:00
parent 32017babae
commit 2b0ebe8948
9 changed files with 852 additions and 8 deletions

View File

@@ -6,6 +6,7 @@
use yii\bootstrap5\Html;
use yii\bootstrap5\ActiveForm;
use yii\helpers\Url;
$this->title = 'Signup';
$this->params['breadcrumbs'][] = $this->title;
@@ -26,6 +27,7 @@ $this->params['breadcrumbs'][] = $this->title;
<?= $form->field($model, 'password')->passwordInput() ?>
<div class="form-group">
<p>I have read and agree to the <a href="<?= Url::to(['/site/terms']) ?>">Terms and Conditions</a>.</p>
<?= Html::submitButton('Signup', ['class' => 'btn btn-primary', 'name' => 'signup-button']) ?>
</div>