EVOLUTION-NINJA
Edit File: default_page.php
<div class="content img-rounded"> <!-- BEGIN LOGIN FORM --> <form class="" action="<?php echo base_url(); ?>" method="post"> <h3 class="form-title"><strong>Sign In</strong></h3> <?php echo validation_errors('<p style="background-color:#f2dede;color:#a94442" class="error alert alert-dangers"><button class="close" data-close="alert"></button>'); ?> <!--<div class="alert alert-danger display-hide"> <button class="close" data-close="alert"></button> <span> Enter any username and password. </span> </div>--> <div class="form-group"> <!--ie8, ie9 does not support html5 placeholder, so we just show field title for that--> <label class="control-label visible-ie8 visible-ie9">Username / Email</label> <?php $data = array( 'name'=> 'username', 'id' => 'username', 'placeholder' => 'Username / Email', 'class' => 'form-control form-control-solid placeholder-no-fix', 'value' => set_value('username'), ); echo form_input($data); ?> </div> <div class="form-group"> <label class="control-label visible-ie8 visible-ie9">Password</label> <?php $data = array( 'name'=> 'password', 'id' => 'password', 'type' => 'password', 'placeholder' => 'Password', 'class' => 'form-control form-control-solid placeholder-no-fix', 'value' => set_value('password'), ); echo form_input($data); ?> </div> <div class="form-actions"> <label class="rememberme check"> <input type="checkbox" name="remember" value="1"/>Remember </label> <a href="javascript:;" id="forget-password" class="forget-password">Forgot Password?</a> </div> <div class="form-group"> <input type="submit" name="submitlogin" class="btn btn-success uppercase" style="width:100%; height:40px; background:#485b7f;" value="Login"> </div> </form> <!-- END LOGIN FORM --> <!-- BEGIN FORGOT PASSWORD FORM --> <form class="forget-form" action="" method="post"> <h3 class="form-title"><strong>Forget Password ?</strong></h3> <p> Enter your e-mail address below to reset your password. </p> <div class="form-group"> <input class="form-control placeholder-no-fix" type="text" autocomplete="off" placeholder="Email address" name="email"/> </div> <div class="form-actions"> <button type="button" id="back-btn" class="btn btn-default">Back</button> <button type="submit" class="btn btn-success uppercase " style="background:#485b7f;">Submit</button> </div> </form> <!-- END FORGOT PASSWORD FORM --> </div>