GIF89a
<?php ob_start(); ini_set('error_reporting', E_STRICT); include("connect.php"); mysqli_set_charset($conn,'utf8'); date_default_timezone_set('Asia/Kolkata'); ?> <!DOCTYPE html> <html> <?php include'head.php'; ?> <body> <style type="text/css"> #uname{ padding-left: 35px; background-image: url(assest/images/user.jpg); background-position: 9px 13px; background-repeat: no-repeat; } #mobb{ padding-left: 35px; background-image: url(assest/images/mobile.png); background-position: 9px 13px; background-repeat: no-repeat; } </style> <section style=""> <div class="container"> <div class="row d-flex justify-content-center"> <div class="col-xs-5 col-sm-8 col-md-8 col-lg-6 col-xl-4"> <!-- <div class="alert alert-danger alert-dismissible"> <button type="button" class="btn-close" data-bs-dismiss="alert"></button> <strong>Alert!</strong> <span id="msgg">Invalid user name and password.</span> </div> --> <div class="card-header d-flex justify-content-between align-items-center"> <img src="assest/images/img1.png" class="mx-auto mt-1" style="height:auto ; max-width: 70%"> </div> <div class="row"> <div class="col-sm-12 col-xs-12"> <div class="form-group my-2"> <input type="text" class="form-control py-3 rounded-pill shadow" id="uname" placeholder="Full Name" aria-describedby=""> </div> <div class="form-group my-2"> <input type="number" class="form-control py-3 rounded-pill shadow" id="mobb" placeholder="Mobile Number" aria-describedby="" onkeypress="checkMobb('mobb')"> </div> <div class="form-group my-2"> <input type="email" class="form-control py-3 rounded-pill shadow" id="email" placeholder="Enter Email ID" aria-describedby=""> </div> <div class="form-group my-2"> <input type="password" class="form-control py-3 rounded-pill shadow" id="pwdd" placeholder="Password" aria-describedby="" > </div> <div class="form-group"> <input type="password" class="form-control py-3 rounded-pill shadow" id="cpwdd" placeholder="Confirm Password" aria-describedby="" > </div> </div> </div> <div class="row"> <div class="col-sm-12 col-xs-12"> <div class="d-grid mt-4"> <button class="btn btn-dark py-2 fs-6 rounded-pill" type="button" onclick="saveReg()"><i class="bi bi-shield-fill-check px-2 text-white"></i><span class="fs-5 text-white">Register</span></button> </div> <div class="d-flex justify-content-center mb-1 mb-lg-4"> <span><a href="" class="text-decoration-none d-flex justify-content-center my-2"> By Clicking, I accept T&C and Privacy</a></span> </div> <div class="d-flex justify-content-center my-2 mb-lg-4"> <span class="fs-6">Already Users ?<a href="dashboard.php" class="text-decoration-none fs-6"> Login Here</a></span> </div> </div> </div> </div> </div> </div> </section> </body> </html> <div id="snackbar"><span id="snack_msgg" style="color: white"></span></div>