Use tab-indentation
This commit is contained in:
parent
a0c911299f
commit
bf173027a1
|
@ -37,7 +37,7 @@ if (strlen($this->data['username']) > 0) {
|
||||||
?>
|
?>
|
||||||
<p><input type="checkbox" id="remember_me" tabindex="5"
|
<p><input type="checkbox" id="remember_me" tabindex="5"
|
||||||
<?php echo ($this->data['rememberMeChecked']) ? 'checked="checked"' : ''; ?>
|
<?php echo ($this->data['rememberMeChecked']) ? 'checked="checked"' : ''; ?>
|
||||||
name="remember_me" value="Yes"/>
|
name="remember_me" value="Yes"/>
|
||||||
<small><?php echo $this->t('{login:remember_me}'); ?></small>
|
<small><?php echo $this->t('{login:remember_me}'); ?></small>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
|
@ -47,8 +47,8 @@ if ($this->data['rememberUsernameEnabled'] && !$this->data['forceUsername']) {
|
||||||
// display the "remember my username" checkbox
|
// display the "remember my username" checkbox
|
||||||
?>
|
?>
|
||||||
<p><input type="checkbox" id="remember_username" tabindex="4"
|
<p><input type="checkbox" id="remember_username" tabindex="4"
|
||||||
<?php echo ($this->data['rememberUsernameChecked']) ? 'checked="checked"' : ''; ?>
|
<?php echo ($this->data['rememberUsernameChecked']) ? 'checked="checked"' : ''; ?>
|
||||||
name="remember_username" value="Yes"/>
|
name="remember_username" value="Yes"/>
|
||||||
<small><?php echo $this->t('{login:remember_username}'); ?></small>
|
<small><?php echo $this->t('{login:remember_username}'); ?></small>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue