0byt3m1n1
Path:
C:
/
BACKUPS
/
IDCARD-backup
/
id Code
/
[
Home
]
File: tst.php
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> </head> <link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <link rel="stylesheet" href="assets/css/style-starter.css"> <link rel="stylesheet" href="tst.css"> <form id="agree" action="" method="post"> <div class="container register"> <div class="row"> <div class="col-md-3 register-left"> <img src="https://image.ibb.co/n7oTvU/logo_white.png" alt=""/> <h3>Welcome</h3> <p>You have to go through instructions before registering!</p> <input type="button" name="" value="BACK" onclick="window.location.href ='index.php'"/><br/> </div> <div class="col-md-9 register-right"> <ul class="nav nav-tabs nav-justified" id="myTab" role="tablist"> </ul> <div class="tab-content" id="myTabContent"> <div class="tab-pane fade show active" id="home" role="tabpanel" aria-labelledby="home-tab"> <h3 class="register-heading">INSTRUCTIONS</h3> <div class="row register-form"> <!--<div class="col-md-6">--> <ul class="contact-info"> <li>All Fileds are mandatory</li><br> <li>Please do aware about your Principal Investigator, Project Code and its duration.</li><br> <li>Edit option is available only at preview page. Once submitted, the details can't be changed/modified. </li> <br> </ul> <!--</div>--> <!--<div class="col-md-6">--> <ul class="contact-info"> <li>Get ready with scanned copy of a recent passport size photograph in JPG/JPEG/PNG/BMP/GIF format.</li> <p style="font-size:12px;line-height: 15px"><i style="color: deepskyblue"> (Size of the Photograph should be < 100kb with 200px Width & 250px height.) </i></p> <br> <li>Submit the copy of the application by an Email to the Registrar through respective Group Head.</li> </ul> <!--</div>--> <div > <input type="checkbox" id="check" name="check" style="margin-top: 4%;" class="checking"> I have read all instructions.<br> <input type="submit" name="submit" id="submit" class="btnRegister" value="PROCEED" /> </div> </div> </div> </div> </form> <?php if(isset($_POST['submit'])) { if(isset($_POST['check'])) { header("Location:form2.php"); } else{ header("Location:tst.php"); } } ?> </html>