Skip to content

Commit

Permalink
Fixed issue #10128: Add HTML5 email and required
Browse files Browse the repository at this point in the history
  • Loading branch information
olleharstedt committed Dec 16, 2015
1 parent df19265 commit d18c52c
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions application/views/admin/user/editusers.php
Expand Up @@ -162,26 +162,22 @@
}
?>





<td class="col-lg-2">
<div class="form-group">
<label for="new_user"><?php eT("Username");?></label>
<input type='text' id='new_user' name='new_user' />
<input type='text' id='new_user' name='new_user' required />
</div>
</td>
<td class="col-md-2">
<div class="form-group">
<label for="new_email" ><?php eT("Email");?></label>
<input type='text' id='new_email' name='new_email' />
<input type='email' id='new_email' name='new_email' required />
</div>
</td>
<td class="col-md-2">
<div class="form-group">
<label for="new_full_name"><?php eT("Full name");?></label>
<input type='text' id='new_full_name' name='new_full_name' />
<input type='text' id='new_full_name' name='new_full_name' required />
</div>
</td>
<td class="col-md-2">
Expand Down

0 comments on commit d18c52c

Please sign in to comment.