File: /home/barbeatleanalyti/public_html/m.beatleanalytics.com/application/views/customer/usersignup.php
<?php
include ('include/header.php');
?>
<script>
$(document).ready(function(){
$(".showsign").click(function(){
$("#mainlogin").hide(500);
$("#signupLogin").show(500);
$("#resetpassdivuser").hide(500);
$("#token").val('usersign');
$(".headtext").html('Sign Up');
})
$(".mainlogin").click(function(){
$("#mainlogin").show(500);
$("#signupLogin").hide(500);
$("#resetpassdivuser").hide(500);
$(".headtext").html('Log In');
})
$(".resetpassdiv").click(function(){
$("#resetpassdivuser").show(500);
$("#mainlogin").hide(500);
$("#signupLogin").hide(500);
$("#token").val('resetuserpassword');
$(".headtext").html('Reset Password');
})
})
</script>
<div class="container">
<div class="row" style="margin-top:10px;">
<div class="col-sm-3 col-md-3 col-xs-3 textcenter logo-campani">
<img src="<?php echo base_url();?>assets/survey/assets/beatle_logo.png">
</div>
<div class="col-sm-9 col-md-9 col-xs-9 textcenter">
<h2 class="headingtext">Welcome to <br>Beatle Analytics</h2>
</div>
</div>
</div>
<div class="col-sm-12 headerback textcenter heder-main">
<?php
if (!empty($error_masg))
{
?>
<div class="col-sm-12" style="color:#900; font-size:15px;">Invalid user name or password, please try again</div>
<?php
}
?>
<form name="userLoginForm" id="userLoginForm" method="post" action="" class="" style="">
<input type="hidden" name="logintype" id="logintype" value="" >
<h2 class="login">Sign UP Here</h2>
<section class="content bgcolor-5">
<span class="input input--minoru input--filled">
<input class="input__field input__field--yoko" type="tel" autocomplete="off" id="endusername" placeholder="Mobile number" id="endusername" />
<label class="input__label input__label--yoko" >
</label>
</span>
<span class="input input--minoru input--filled">
<input class="input__field input__field--yoko" type="Password" placeholder="Password" id="password" />
</span>
<span class="input input--minoru input--filled">
<input class="input__field input__field--yoko" type="Password" placeholder="Retype password" id="password" />
</span>
<br><br>
</section>
<div class="container" >
<div class="row">
<div class="col-sm-12 button-login-reset-sign-up-button">
<table style=" width:100%;" >
<tbody>
<tr>
<a href="<?php echo base_url();?>index.php/customer/usersignup" class="btn btn-danger" role="button" style="
background-color: #c05448;color: #f9f7f6; font-size: 18px; size: 17px; border: 1px solid #FFF; width: 110px;
" >Sign Up</a>
<button onClick="javascript: return validateFrom('');" type="button" class="btn btn-danger" style="
background-color: #c05448;color: #f9f7f6; font-size: 18px; size: 17px; border: 1px solid #FFF; width: 110px;
" > Login</button>
</td>
</tr>
</tbody>
</table>
<!-------->
</div>
</div>
<!--ng-show="departmentLoginForm.$invalid"-->
</form>
</div>
<?php
include ('include/footer.php');
?>