Try without any textinput fudging. Fix the input type, don't use

"email"
This commit is contained in:
dave 2010-07-13 18:27:14 +00:00
parent 0f580472f6
commit 9ce7df3f9b
2 changed files with 4 additions and 3 deletions

View File

@ -132,11 +132,12 @@ form.editor th {
}
form.editor * input {
border: 1px solid black;
/* border: none solid solid;*/
}
form.editor * input.error {
border: 1px solid red;
/* border: 1px solid red;*/
}
form.editor * label.error {

View File

@ -133,7 +133,7 @@ if($_GET['action']=="save") {
<form class="editor" name="account" id="accountform">
<table><tr>
<td><label for="email"><?=i18n('Email')?>:</label></td>
<td><input id="email" <?=$d?> name="email" type="email" size="20" value="<?=$email?>"></td>
<td><input id="email" <?=$d?> name="email" type="text" size="20" value="<?=$email?>"></td>
</tr><tr>
<td></td><td>
<div style="font-size: 0.75em;"><?=i18n('Changing the email address will cause a confirmation email to besent to the new email address before the change will take effect.')?></div>