do not use dojo for login/password fields

This commit is contained in:
Andrew Dolgov 2012-09-19 22:18:30 +04:00
parent 839b065860
commit c82c2aa412
1 changed files with 12 additions and 4 deletions

View File

@ -30,6 +30,14 @@
border-width : 0px;
}
input.input {
font-family : sans-serif;
font-size : medium;
border-spacing : 2px;
border : 1px solid #b5bcc7;
padding : 2px;
}
label {
width : 120px;
margin-right : 20px;
@ -157,17 +165,17 @@ function bwLimitChange(elem) {
<?php } ?>
<div class="row">
<label><?php echo __("Login:") ?></label>
<input name="login"
<input name="login" class="input"
onchange="fetchProfiles()" onfocus="fetchProfiles()" onblur="fetchProfiles()"
style="width : 220px"
dojoType="dijit.form.TextBox" required="1"
required="1"
value="<?php echo $_SESSION["fake_login"] ?>" />
</div>
<div class="row">
<label><?php echo __("Password:") ?></label>
<input type="password" name="password" dojoType="dijit.form.TextBox" required="1"
style="width : 220px"
<input type="password" name="password" required="1"
style="width : 220px" class="input"
value="<?php echo $_SESSION["fake_password"] ?>"/>
</div>