diff options
author | Christian Oliff <christianoliff@yahoo.com> | 2018-02-09 21:46:25 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-09 21:46:25 +0900 |
commit | 458ddf8cb48e676838920168838aff362b3216db (patch) | |
tree | 16437d54510c6480925c4533a48665a1eafc23da /settings | |
parent | 0841d29c4c05f877477cc8759ccebb2ff598138e (diff) | |
download | nextcloud-server-458ddf8cb48e676838920168838aff362b3216db.tar.gz nextcloud-server-458ddf8cb48e676838920168838aff362b3216db.zip |
Correct input type for email
Correct input type for email
Diffstat (limited to 'settings')
-rw-r--r-- | settings/templates/users/part.createuser.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/templates/users/part.createuser.php b/settings/templates/users/part.createuser.php index ca36b196ea8..6a388fc0d88 100644 --- a/settings/templates/users/part.createuser.php +++ b/settings/templates/users/part.createuser.php @@ -7,7 +7,7 @@ type="password" id="newuserpassword" placeholder="<?php p($l->t('Password'))?>" autocomplete="off" autocapitalize="none" autocorrect="off" /> - <input id="newemail" type="text" style="display:none" + <input id="newemail" type="email" style="display:none" placeholder="<?php p($l->t('E-Mail'))?>" autocomplete="off" autocapitalize="none" autocorrect="off" /> <div class="groups"><div class="groupsListContainer multiselect button" data-placeholder="<?php p($l->t('Groups'))?>"><span class="title groupsList"></span><span class="icon-triangle-s"></span></div></div> |