ok
Direktori : /home2/selectio/public_html/wedding-info-new/admin/php old code/ |
Current File : //home2/selectio/public_html/wedding-info-new/admin/php old code/signup.php |
<!doctype html> <html lang="en"> <head> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!--favicon--> <link rel="icon" href="assets/img/speedconnect-favi.png" type="image/png" /> <!--plugins--> <link href="assets/plugins/simplebar/css/simplebar.css" rel="stylesheet" /> <link href="assets/plugins/perfect-scrollbar/css/perfect-scrollbar.css" rel="stylesheet" /> <link href="assets/plugins/metismenu/css/metisMenu.min.css" rel="stylesheet" /> <!-- loader--> <link href="assets/css/pace.min.css" rel="stylesheet" /> <script src="assets/js/pace.min.js"></script> <!-- Bootstrap CSS --> <link href="assets/css/bootstrap.min.css" rel="stylesheet"> <link href="assets/css/bootstrap-extended.css" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap" rel="stylesheet"> <link href="assets/css/app.css" rel="stylesheet"> <link href="assets/css/icons.css" rel="stylesheet"> <title>Signup - Speedconnect</title> </head> <body class=""> <!--wrapper--> <div class="wrapper"> <div class="section-authentication-cover"> <div class=""> <div class="row g-0"> <div class="col-12 col-xl-7 col-xxl-8 auth-cover-left align-items-center justify-content-center d-none d-xl-flex"> <div class="card shadow-none bg-transparent shadow-none rounded-0 mb-0"> <div class="card-body"> <img src="assets/images/login-images/register-cover.svg" class="img-fluid auth-img-cover-login" width="550" alt=""/> </div> </div> </div> <div class="col-12 col-xl-5 col-xxl-4 auth-cover-right align-items-center justify-content-center" style="background-color:#182333;color:white;"> <div class="card rounded-0 m-3 shadow-none bg-transparent mb-0"> <div class="card-body p-sm-5"> <div class=""> <div class="mb-3 text-center"> <img src="assets/img/speedconnect-logo.png" width="220" alt=""> </div> <div class="text-center mb-4"> <p class="mb-0">Please fill the below details to create your account</p> </div> <div class="form-body"> <form id="jQueryValidationForms" class="row g-3" method="" action="#"> <div class="col-12"> <label for="inputUsername" class="form-label">Username</label> <input type="text" class="form-control" name="usernames" placeholder="Jhon"> </div> <div class="col-12"> <div class="d-grid"> <button type="submit" name="submit2" class="btn btn-primary">Sign up</button> </div> </div> </form> <form id="jQueryValidationForm" class="row g-3" method="" action="#"> <div class="col-12"> <label for="inputUsername" class="form-label">Username</label> <input type="text" class="form-control" name="username" placeholder="Jhon"> </div> <div class="col-12"> <label for="inputEmailAddress" class="form-label">Email Address</label> <input type="email" class="form-control" name="email" id="inputEmailAddress" placeholder="example@user.com"> </div> <div class="col-12"> <label for="inputChoosePassword" class="form-label">Password</label> <div class="input-group" id="show_hide_password" style="background: white;"> <input type="password" class="form-control border-end-0" id="inputChoosePassword" value="12345678" placeholder="Enter Password"> <a href="javascript:;" class="input-group-text bg-transparent"><i class='bx bx-hide'></i></a> </div> </div> <div class="col-12"> <label for="inputSelectCountry" class="form-label">Country</label> <select class="form-select" id="inputSelectCountry" aria-label="Default select example"> <option selected>India</option> <option value="1">United Kingdom</option> <option value="2">America</option> <option value="3">Dubai</option> </select> </div> <div class="col-12"> <div class="form-check form-switch"> <input class="form-check-input" type="checkbox" id="flexSwitchCheckChecked"> <label class="form-check-label" for="flexSwitchCheckChecked">I read and agree to Terms & Conditions</label> </div> </div> <div class="col-12"> <div class="d-grid"> <button type="submit" name="submit2" class="btn btn-primary">Sign up</button> </div> </div> <div class="col-12"> <div class="text-center "> <p class="mb-0">Already have an account? <a href="login.php">Sign in here</a></p> </div> </div> </form> </div> <div class="login-separater text-center mb-5"> <span style="color: blue;border-radius: 30px;">OR SIGN UP WITH EMAIL</span> <hr/> </div> <div class="list-inline contacts-social text-center"> <a href="javascript:;" class="list-inline-item bg-facebook text-white border-0 rounded-3"><i class="bx bxl-facebook"></i></a> <a href="javascript:;" class="list-inline-item bg-twitter text-white border-0 rounded-3"><i class="bx bxl-twitter"></i></a> <a href="javascript:;" class="list-inline-item bg-google text-white border-0 rounded-3"><i class="bx bxl-google"></i></a> <a href="javascript:;" class="list-inline-item bg-linkedin text-white border-0 rounded-3"><i class="bx bxl-linkedin"></i></a> </div> </div> </div> </div> </div> </div> <!--end row--> </div> </div> </div> <!--end wrapper--> <!-- Bootstrap JS --> <script src="assets/js/bootstrap.bundle.min.js"></script> <!--plugins--> <script src="assets/js/jquery.min.js"></script> <script src="assets/plugins/simplebar/js/simplebar.min.js"></script> <script src="assets/plugins/metismenu/js/metisMenu.min.js"></script> <script src="assets/plugins/perfect-scrollbar/js/perfect-scrollbar.js"></script> <!--Password show & hide js --> <script> $(document).ready(function () { $("#show_hide_password a").on('click', function (event) { event.preventDefault(); if ($('#show_hide_password input').attr("type") == "text") { $('#show_hide_password input').attr('type', 'password'); $('#show_hide_password i').addClass("bx-hide"); $('#show_hide_password i').removeClass("bx-show"); } else if ($('#show_hide_password input').attr("type") == "password") { $('#show_hide_password input').attr('type', 'text'); $('#show_hide_password i').removeClass("bx-hide"); $('#show_hide_password i').addClass("bx-show"); } }); }); </script> <script src="assets/plugins/validation/jquery.validate.min.js"></script> <script> $.validator.setDefaults( { submitHandler: function () { alert( "submitted!" ); } } ); $( document ).ready( function () { $( "#jQueryValidationForm" ).validate( { rules: { yourname: "required", phone: "required", username: { required: true, minlength: 6 }, password: { required: true, minlength: 5 }, confirm_password: { required: true, minlength: 5, equalTo: "#input38" }, email: { required: true, email: true }, country: "required", address: "required", agree: "required" }, messages: { yourname: "Please enter username", phone: "Please enter your phone number", username: { required: "Please enter a username", minlength: "Your username must consist of at least 6 characters" }, password: { required: "Please provide a password", minlength: "Your password must be at least 5 characters long" }, confirm_password: { required: "Please provide a password", minlength: "Your password must be at least 5 characters long", equalTo: "Please enter the same password as above" }, email: "Please enter a valid email address", country: "Please select country", address: "Please type your message", agree: "Please accept our policy" }, } ); $( "#jQueryValidationForms" ).validate( { rules: { usernames: { required: true, minlength: 6 } }, messages: { usernames: { required: "Please enter a username", minlength: "Your username must consist of at least 6 characters" } }, submitHandler: function(form) { //form.submit(); alert( "new Form Submit...!" ); } } ); } ); </script> <!--app JS--> <script src="assets/js/app.js"></script> </body> </html>