diff options
| author | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-05-12 18:30:08 +0300 |
|---|---|---|
| committer | Senky <jakubsenko@gmail.com> | 2013-05-20 18:42:09 +0200 |
| commit | 504038d230bad8d3de142b488a52695134902a8d (patch) | |
| tree | e5a549b3d251d2bf3f9cbc073828b5dfbc376fe6 /phpBB/styles/prosilver/template/ucp_profile_profile_info.html | |
| parent | ae2700eef29a0cda1ff9abecb9bdc6beaf199982 (diff) | |
| download | forums-504038d230bad8d3de142b488a52695134902a8d.tar forums-504038d230bad8d3de142b488a52695134902a8d.tar.gz forums-504038d230bad8d3de142b488a52695134902a8d.tar.bz2 forums-504038d230bad8d3de142b488a52695134902a8d.tar.xz forums-504038d230bad8d3de142b488a52695134902a8d.zip | |
[ticket/11010] Fix email inputs
Add type="email" to fields that should be email fields
Change back to type="text" fields that might have wildcards or not necessary email
PHPBB3-11010
Diffstat (limited to 'phpBB/styles/prosilver/template/ucp_profile_profile_info.html')
| -rw-r--r-- | phpBB/styles/prosilver/template/ucp_profile_profile_info.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/styles/prosilver/template/ucp_profile_profile_info.html b/phpBB/styles/prosilver/template/ucp_profile_profile_info.html index 82490f202e..3578c29e8e 100644 --- a/phpBB/styles/prosilver/template/ucp_profile_profile_info.html +++ b/phpBB/styles/prosilver/template/ucp_profile_profile_info.html @@ -24,11 +24,11 @@ </dl> <dl> <dt><label for="yim">{L_UCP_YIM}{L_COLON}</label></dt> - <dd><input type="email" name="yim" id="yim" maxlength="255" value="{YIM}" class="inputbox" /></dd> + <dd><input type="text" name="yim" id="yim" maxlength="255" value="{YIM}" class="inputbox" /></dd> </dl> <dl> <dt><label for="jabber">{L_UCP_JABBER}{L_COLON}</label></dt> - <dd><input type="text" name="jabber" id="jabber" maxlength="255" value="{JABBER}" class="inputbox" /></dd> + <dd><input type="email" name="jabber" id="jabber" maxlength="255" value="{JABBER}" class="inputbox" /></dd> </dl> <dl> <dt><label for="website">{L_WEBSITE}{L_COLON}</label></dt> |
