diff options
| author | 2021-05-08 18:36:51 +0200 | |
|---|---|---|
| committer | 2021-05-08 18:36:51 +0200 | |
| commit | ffb0e30dde98bcef1b3fa0bfb020c3a478c6a402 (patch) | |
| tree | df336f8ad9bc0c15dc327e7994079699f86f3149 /app/views/auth | |
| parent | 607f7e725487ce0eb0339b288ce9e58036dad4a0 (diff) | |
Minor uniform stricter HTML (#3616)
Diffstat (limited to 'app/views/auth')
| -rw-r--r-- | app/views/auth/register.phtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/auth/register.phtml b/app/views/auth/register.phtml index c0c05758f..96794d8b2 100644 --- a/app/views/auth/register.phtml +++ b/app/views/auth/register.phtml @@ -26,7 +26,7 @@ <label for="new_user_email"> <?= _t('gen.auth.email') ?> </label> - <input id="new_user_email" name="new_user_email" type="email" required /> + <input id="new_user_email" name="new_user_email" type="email" required="required" /> </div> <?php } ?> @@ -44,7 +44,7 @@ <?php if ($this->show_tos_checkbox) { ?> <div class="form-group"> <label class="checkbox" for="accept-tos"> - <input type="checkbox" name="accept_tos" id="accept-tos" value="1" required /> + <input type="checkbox" name="accept_tos" id="accept-tos" value="1" required="required" /> <?= _t('gen.auth.accept_tos', _url('index', 'tos')) ?> </label> </div> |
