Updated login.php CSS

This commit is contained in:
Alex Tselegidis 2015-07-08 22:42:54 +02:00
parent 24c995d961
commit 0aaac2830a
1 changed files with 13 additions and 24 deletions

View File

@ -43,19 +43,6 @@
border: 1px solid #DDDADA; border: 1px solid #DDDADA;
padding: 70px; padding: 70px;
} }
#login-icon {
float: right;
margin-top: 17px;
}
label {
font-weight: bold;
}
.forgot-password {
/* margin-left: 20px; */
}
</style> </style>
<script type="text/javascript"> <script type="text/javascript">
@ -116,16 +103,18 @@
<hr> <hr>
<div class="alert hidden"></div> <div class="alert hidden"></div>
<form id="login-form"> <form id="login-form">
<div class="form-group">
<label for="username"><?php echo $this->lang->line('username'); ?></label> <label for="username"><?php echo $this->lang->line('username'); ?></label>
<input type="text" id="username" <input type="text" id="username"
placeholder="<?php echo $this->lang->line('enter_username_here'); ?>" placeholder="<?php echo $this->lang->line('enter_username_here'); ?>"
class="span3" /> class="form-control" />
</div>
<div class="form-group">
<label for="password"><?php echo $this->lang->line('password'); ?></label> <label for="password"><?php echo $this->lang->line('password'); ?></label>
<input type="password" id="password" <input type="password" id="password"
placeholder="<?php echo $this->lang->line('enter_password_here'); ?>" placeholder="<?php echo $this->lang->line('enter_password_here'); ?>"
class="span3" /> class="form-control" />
</div>
<br> <br>
<button type="submit" id="login" class="btn btn-primary"> <button type="submit" id="login" class="btn btn-primary">
@ -137,7 +126,7 @@
<a href="<?php echo $base_url; ?>/index.php/user/forgot_password" class="forgot-password"> <a href="<?php echo $base_url; ?>/index.php/user/forgot_password" class="forgot-password">
<?php echo $this->lang->line('forgot_your_password'); ?></a> <?php echo $this->lang->line('forgot_your_password'); ?></a>
| |
<span id="select-language" class="badge badge-inverse"> <span id="select-language" class="label label-success">
<?php echo ucfirst($this->config->item('language')); ?> <?php echo ucfirst($this->config->item('language')); ?>
</span> </span>
</form> </form>