summaryrefslogtreecommitdiff
path: root/include/login_form.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-09-19 22:18:30 +0400
committerAndrew Dolgov <[email protected]>2012-09-19 22:18:30 +0400
commitc82c2aa412b912e409b328b46f535f6cb471340a (patch)
treef09439dde93ec6cfa3e99f741cf9f8ec8792fb74 /include/login_form.php
parent839b065860ae61b10061767d200b71090083f554 (diff)
do not use dojo for login/password fields
Diffstat (limited to 'include/login_form.php')
-rw-r--r--include/login_form.php16
1 files changed, 12 insertions, 4 deletions
diff --git a/include/login_form.php b/include/login_form.php
index 865709f0e..2c096a675 100644
--- a/include/login_form.php
+++ b/include/login_form.php
@@ -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>