Вход Регистрация
Файл: version 2.0.5/demo-reg.html
Строк: 147
<?php
<!DOCTYPE html
<
html>
    <
head>
        <
title>Sky Forms Pro</title>
        
        <
meta charset="utf-8">
        <
meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
        
        <
link rel="stylesheet" href="css/demo.css">
        <
link rel="stylesheet" href="css/font-awesome.css">
        <
link rel="stylesheet" href="css/sky-forms.css">
        <!--[if 
lt IE 9]>
            <
link rel="stylesheet" href="css/sky-forms-ie8.css">
        <![endif]-->
        
        <
script src="js/jquery.min.js"></script>
        <
script src="js/jquery.validate.min.js"></script>
        <!--[if 
lt IE 10]>
            <
script src="js/jquery.placeholder.min.js"></script>
        <![endif]-->        
        <!--[if 
lt IE 9]>
            <
script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
            <
script src="js/sky-forms-ie8.js"></script>
        <![endif]-->
    </
head>
    
    <
body class="bg-cyan">
        <
div class="body body-s">        
            <
form action="" id="sky-form" class="sky-form">
                <
header>Registration form</header>
                
                <
fieldset>                    
                    <
section>
                        <
label class="input">
                            <
class="icon-append fa fa-user"></i>
                            <
input type="text" name="username" placeholder="Username">
                            <
class="tooltip tooltip-bottom-right">Needed to enter the website</b>
                        </
label>
                    </
section>
                    
                    <
section>
                        <
label class="input">
                            <
class="icon-append fa fa-envelope-o"></i>
                            <
input type="email" name="email" placeholder="Email address">
                            <
class="tooltip tooltip-bottom-right">Needed to verify your account</b>
                        </
label>
                    </
section>
                    
                    <
section>
                        <
label class="input">
                            <
class="icon-append fa fa-lock"></i>
                            <
input type="password" name="password" placeholder="Password" id="password">
                            <
class="tooltip tooltip-bottom-right">Don't forget your password</b>
                        </label>
                    </section>
                    
                    <section>
                        <label class="input">
                            <i class="icon-append fa fa-lock"></i>
                            <input type="password" name="passwordConfirm" placeholder="Confirm password">
                            <b class="tooltip tooltip-bottom-right">Don'
t forget your password</b>
                        </
label>
                    </
section>
                </
fieldset>
                    
                <
fieldset>
                    <
div class="row">
                        <
section class="col col-6">
                            <
label class="input">
                                <
input type="text" name="firstname" placeholder="First name">
                            </
label>
                        </
section>
                        <
section class="col col-6">
                            <
label class="input">
                                <
input type="text" name="lastname" placeholder="Last name">
                            </
label>
                        </
section>
                    </
div>
                    
                    <
section>
                        <
label class="select">
                            <
select name="gender">
                                <
option value="0" selected disabled>Gender</option>
                                <
option value="1">Male</option>
                                <
option value="2">Female</option>
                                <
option value="3">Other</option>
                            </
select>
                            <
i></i>
                        </
label>
                    </
section>
                    
                    <
section>
                        <
label class="checkbox"><input type="checkbox" name="subscription" id="subscription"><i></i>I want to receive news and  special offers</label>
                        <
label class="checkbox"><input type="checkbox" name="terms" id="terms"><i></i>I agree with the Terms and Conditions</label>
                    </
section>
                </
fieldset>
                <
footer>
                    <
button type="submit" class="button">Submit</button>
                </
footer>
            </
form>            
        </
div>
        
        <
script type="text/javascript">
            $(function()
            {
                
// Validation        
                
$("#sky-form").validate(
                {                    
                    
// Rules for form validation
                    
rules:
                    {
                        
username:
                        {
                            
requiredtrue
                        
},
                        
email:
                        {
                            
requiredtrue,
                            
emailtrue
                        
},
                        
password:
                        {
                            
requiredtrue,
                            
minlength3,
                            
maxlength20
                        
},
                        
passwordConfirm:
                        {
                            
requiredtrue,
                            
minlength3,
                            
maxlength20,
                            
equalTo'#password'
                        
},
                        
firstname:
                        {
                            
requiredtrue
                        
},
                        
lastname:
                        {
                            
requiredtrue
                        
},
                        
gender:
                        {
                            
requiredtrue
                        
},
                        
terms:
                        {
                            
requiredtrue
                        
}
                    },
                    
                    
// Messages for form validation
                    
messages:
                    {
                        
login:
                        {
                            
required'Please enter your login'
                        
},
                        
email:
                        {
                            
required'Please enter your email address',
                            
email'Please enter a VALID email address'
                        
},
                        
password:
                        {
                            
required'Please enter your password'
                        
},
                        
passwordConfirm:
                        {
                            
required'Please enter your password one more time',
                            
equalTo'Please enter the same password as above'
                        
},
                        
firstname:
                        {
                            
required'Please select your first name'
                        
},
                        
lastname:
                        {
                            
required'Please select your last name'
                        
},
                        
gender:
                        {
                            
required'Please select your gender'
                        
},
                        
terms:
                        {
                            
required'You must agree with Terms and Conditions'
                        
}
                    },                    
                    
                    
// Do not change code below
                    
errorPlacement: function(errorelement)
                    {
                        
error.insertAfter(element.parent());
                    }
                });
            });            
        </
script>
    </
body>
</
html>
?>
Онлайн: 1
Реклама