0byt3m1n1
Path:
C:
/
wamp64
/
www
/
WaterCat
/
[
Home
]
File: apply.php
<!doctype html> <html lang="en"> <head> <link rel="stylesheet" type="text/css" href="styles.css"> <link rel="stylesheet" type="text/css" href="nav.css"> <style> body { font-family: Arial, sans-serif; background-color: #f5f5f5; margin: 0; padding: 0; } .container { max-width: 800px; margin: 20px auto; padding: 20px; background-color: #fff; border-radius: 5px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } .form-section { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #ccc; } .form-group { margin-bottom: 20px; } label { display: inline-block; width: 200px; font-weight: bold; } input[type="text"], input[type="file"], select, textarea { width: calc(100% - 220px); padding: 8px; border: 1px solid #ccc; border-radius: 5px; box-sizing: border-box; font-size: 14px; } input[type="submit"], .button { background-color: #4CAF50; border: none; color: white; padding: 10px 30px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; border-radius: 5px; cursor: pointer; } input[type="submit"]:hover, .button:hover { background-color: #45a049; } </style> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-MLKHL5MWPW"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-MLKHL5MWPW'); </script> </head> <body class="bg-white" background="assets/images/slider/s1.jpg" alt=""> <div class="topnav"> <a class="active" href="indexnew.php">Home</a> <a href="#news">News</a> <a href="contact.php">Contact</a> <a href="about.html">About</a> </div> <div class="container"> <form accept-charset="UTF-8" action="applyinsert.php" method="POST" enctype="multipart/form-data"> <div class="form-section"> <div class="form-group"> <input type="hidden" name="id" value="<?php echo $_GET['id'];?> "> <input type="hidden" name="name" value="<?php echo $_GET['name'];?> "> <label>Name of Your Project / Name of the Student</label> <input type="text" name="fullname" class="form-control" id="exampleInputName" size="25" placeholder="Enter your Name of Project" required> </div> <div class="form-group"> <label>Sample Details</label> <textarea rows="2" cols="20" name="details" placeholder="Enter Your Sample Details"></textarea> </div> <div class="form-group"> <label>Location</label> <input type="text" name="address" class="form-control" id="inputAddress" placeholder="Enter Your Location" required> </div> </div> <div class="form-section"> <div class="form-group"> <label>General Observations</label> <textarea rows="2" cols="20" name="obs" placeholder="General Observations (Colour, Turbidity, Odour)"></textarea> </div> <div class="form-group"> <label for="type">Type</label> <select name="type" id="type" style="width: 100%; padding: 8px; border: 1px solid #ccc; border-radius: 5px; box-sizing: border-box; margin-bottom: 10px;"> <option value="Flood">Flood</option> <option value="Drought">Drought</option> <option value="Landslide">Landslide</option> </select> </div> <div class="form-group"> <label>Upload your images of Water Source:</label> <input type="file" name="file" accept=".jpg,.png"> </div> </div> <input type="submit" name="submit" value="Submit"> <?php $id1=$_GET['id']; echo "<a class='button' href='skip.php?id=$id1'>Skip</a>"; ?> </form> </div> </body> </html>