| 12694 |
anikendra |
1 |
<script src="<?=base_url().$this->config->item('current_client')?>/js/login.js?version=<?=$this->config->item('cdn_version');?>" type="text/javascript"></script>
|
|
|
2 |
<div class="auth-head clearfix">
|
|
|
3 |
<a href="<?php echo base_url().'login';?>">
|
|
|
4 |
login
|
|
|
5 |
</a>
|
|
|
6 |
<a></a>
|
|
|
7 |
<a class="selected">
|
|
|
8 |
register
|
|
|
9 |
</a>
|
|
|
10 |
</div><!--auth-head-->
|
|
|
11 |
|
|
|
12 |
<div id="register" class="register-hldr">
|
|
|
13 |
<div id="error" class="error_msg" <?php if(isset($signup['msg']) && !empty($signup['msg'])){ ?>style="display:block" <?php } else {?> style="display:none" <?php }?>>
|
|
|
14 |
<?php if(isset($signup['msg']) && !empty($signup['msg'])){
|
|
|
15 |
echo $signup['msg'];
|
|
|
16 |
} ?>
|
|
|
17 |
</div>
|
|
|
18 |
<form action="<?php echo base_url().'register' ?>" method="post" onsubmit="return signin()">
|
|
|
19 |
<fieldset>
|
|
|
20 |
<div class="register-cont">
|
|
|
21 |
<label for="login-id">Login Id(Email): </label>
|
|
|
22 |
<input type="text" id="login-id" name="email" onfocus="clearerror();" autocorrect="off" autocapitalize="off" autocomplete="off" spellcheck="false"/>
|
|
|
23 |
<p>We will send Order details to this Email Address</p>
|
|
|
24 |
|
|
|
25 |
<label for="pwd">Password: </label>
|
|
|
26 |
<input type="password" id="pwd" onfocus="clearerror();" name="password" autocorrect="off" autocapitalize="off" autocomplete="off" spellcheck="false"/>
|
|
|
27 |
<p>Minimum 6 characters</p>
|
|
|
28 |
</div><!--register-cont-->
|
|
|
29 |
<div class="registerbtn-cont clearfix">
|
|
|
30 |
<div class="btn-cont">
|
|
|
31 |
<input type="submit" class="login-btn " name="submit" value="Register" id="save_btn" onclick="registerbutton()"/>
|
|
|
32 |
|
|
|
33 |
</div><!--btn-cont-->
|
|
|
34 |
</div>
|
|
|
35 |
</fieldset>
|
|
|
36 |
</form>
|
|
|
37 |
</div><!--register-->
|
|
|
38 |
<script type='text/javascript'>
|
|
|
39 |
/*
|
|
|
40 |
if(typeof _gaq != "undefined" && _gaq != null) {
|
|
|
41 |
_gaq.push(['_trackEvent', 'Register']);
|
|
|
42 |
}
|
|
|
43 |
*/
|
|
|
44 |
function registerbutton() {
|
|
|
45 |
ga('send', 'event', 'Register', 'Button Clicked', 'Register');
|
|
|
46 |
}
|
|
|
47 |
</script>
|