diff options
author | Dan Callahan <dan.callahan@gmail.com> | 2014-08-26 11:14:30 -0500 |
---|---|---|
committer | Dan Callahan <dan.callahan@gmail.com> | 2014-08-26 11:14:30 -0500 |
commit | 6cca20fb36abda47f6ae6d0f79a35846b866efeb (patch) | |
tree | d3a659343e7c47dbb2d1345c3d33c550d7ae0f81 | |
parent | 910b827b9801d6f8429e01809b821b98216af813 (diff) | |
download | nextcloud-server-6cca20fb36abda47f6ae6d0f79a35846b866efeb.tar.gz nextcloud-server-6cca20fb36abda47f6ae6d0f79a35846b866efeb.zip |
Set email input field to type=email for better UX
-rw-r--r-- | settings/templates/personal.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/templates/personal.php b/settings/templates/personal.php index ecdd6dad24a..661c242ea6b 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -86,7 +86,7 @@ if($_['passwordChangeSupported']) { ?> <form id="lostpassword" class="section"> <h2><?php p($l->t('Email'));?></h2> - <input type="text" name="email" id="email" value="<?php p($_['email']); ?>" + <input type="email" name="email" id="email" value="<?php p($_['email']); ?>" placeholder="<?php p($l->t('Your email address'));?>" autocomplete="on" autocapitalize="off" autocorrect="off" /> <span class="msg"></span><br /> |