0byt3m1n1
Path:
C:
/
Users
/
Administrator
/
Desktop
/
CWRDM Backup
/
WaterCat
/
[
Home
]
File: portal.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-group { margin-bottom: 20px; } label { display: inline-block; width: 200px; font-weight: bold; } input[type="text"], textarea { width: calc(100% - 220px); padding: 8px; border: 1px solid #ccc; border-radius: 5px; box-sizing: border-box; font-size: 14px; } input[type="file"] { margin-top: 10px; } input[type="submit"] { 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 { background-color: #45a049; } </style> </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="pinsert.php" method="POST" enctype="multipart/form-data"> <div class="form-group"> <input type="hidden" name="id" value="<?php echo $_GET['id']; ?>"> </div> <div class="form-group"> <label for="exampleInputName">Enter The Location</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>Details about the Place</label> <textarea rows="2" cols="20" name="details" placeholder="Enter Details about the Place"></textarea> </div> <div class="form-group"> <label class="mr-4">Upload Image:</label> <input type="file" name="file" accept=".jpg,.png" required> </div> </div> <input type="submit" name="submit" value="Submit"> </form> </body> </html>