Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -1224,7 +1224,7 @@ function css()

#login {
max-width:280px;
text-align:right;
text-align:left;
margin:15px auto 50px auto;
}

Expand All @@ -1236,7 +1236,7 @@ function css()

#login label{
width: 120px;
text-align: right;
text-align: left;
}

/* Mobile interface */
Expand Down Expand Up @@ -2889,12 +2889,12 @@ public function printLoginBox()
{
?>
<div><label for="user_name"><?php print $this->getString("username"); ?>:</label>
<input type="text" name="user_name" value="" id="user_name" /></div>
<input type="text" name="user_name" value="" id="user_name" maxlength="40" size="40"/></div>
<?php
}
?>
<div><label for="user_pass"><?php print $this->getString("password"); ?>:</label>
<input type="password" name="user_pass" id="user_pass" /></div>
<input type="password" name="user_pass" id="user_pass" maxlength="40" size="40"/></div>
<div><input type="submit" value="<?php print $this->getString("log_in"); ?>" class="button" /></div>
</form>
</div>
Expand Down