Skip to content

Commit 1c49a42

Browse files
committed
Add fieldset to config form
1 parent fd10e54 commit 1c49a42

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

Template/config/application.php

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1-
<?= $this->form->label(t('Email domain restriction for sign up'), 'registration_email_domain') ?>
2-
<?= $this->form->text('registration_email_domain', $values, $errors, array('placeholder="domain1.tld, domain2.tld, domain3.tld"')) ?>
3-
<p class="form-help"><?= t('Only people with this email address will be allowed to sign up.') ?></p>
1+
<fieldset>
2+
<legend><?= t('Registration') ?></legend>
3+
<?= $this->form->label(t('Email domain restriction for sign up'), 'registration_email_domain') ?>
4+
<?= $this->form->text('registration_email_domain', $values, $errors, array('placeholder="domain1.tld, domain2.tld, domain3.tld"')) ?>
5+
<p class="form-help"><?= t('Only people with this email address will be allowed to sign up.') ?></p>
6+
</fieldset>

0 commit comments

Comments
 (0)