Updated forgot_password.php CSS and HTML

This commit is contained in:
Alex Tselegidis 2015-07-08 22:44:52 +02:00
parent 0aaac2830a
commit 2385469476

View file

@ -44,11 +44,7 @@
padding: 70px; padding: 70px;
} }
label { .user-login {
font-weight: bold;
}
.user-login{
margin-left: 20px; margin-left: 20px;
} }
</style> </style>
@ -111,13 +107,16 @@
<hr> <hr>
<div class="alert hidden"></div> <div class="alert hidden"></div>
<form> <form>
<label for="username"><?php echo $this->lang->line('username'); ?></label> <div class="form-group">
<input type="text" id="username" placeholder="<?php echo $this->lang->line('enter_username_here'); ?>" class="span3" /> <label for="username"><?php echo $this->lang->line('username'); ?></label>
<input type="text" id="username" placeholder="<?php echo $this->lang->line('enter_username_here'); ?>" class="form-control" />
</div>
<div class="form-group">
<label for="email"><?php echo $this->lang->line('email'); ?></label>
<input type="text" id="email" placeholder="<?php echo $this->lang->line('enter_email_here'); ?>" class="form-control" />
</div>
<label for="email"><?php echo $this->lang->line('email'); ?></label> <br>
<input type="text" id="email" placeholder="<?php echo $this->lang->line('enter_email_here'); ?>" class="span3" />
<br><br>
<button type="submit" id="get-new-password" class="btn btn-primary btn-large"> <button type="submit" id="get-new-password" class="btn btn-primary btn-large">
<?php echo $this->lang->line('regenerate_password'); ?> <?php echo $this->lang->line('regenerate_password'); ?>