mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-12-22 22:52:35 +03:00
Updated login.php CSS
This commit is contained in:
parent
24c995d961
commit
0aaac2830a
1 changed files with 13 additions and 24 deletions
|
@ -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>
|
||||||
|
|
Loading…
Reference in a new issue