0byt3m1n1
Path:
C:
/
wamp64
/
www
/
WaterCat
/
[
Home
]
File: slider.php
<!DOCTYPE html> <html> <head> <title>Upload Multiple Images</title> <link rel="stylesheet" type="text/css" href="styles.css"> <link rel="stylesheet" type="text/css" href="nav.css"> <style> body { background: url("assets/images/slider/s1.jpg") no-repeat center center fixed; background-size: cover; margin: 0; padding: 0; font-family: Arial, sans-serif; } form { max-width: 500px; margin: 0 auto; background-color: #fff; padding: 20px; border-radius: 5px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } label { font-weight: bold; } input[type="file"] { margin-bottom: 20px; } input[type="submit"] { background-color: #ffc107; color: #fff; border: none; padding: 10px 20px; font-size: 16px; cursor: pointer; border-radius: 5px; transition: background-color 0.3s ease; } input[type="submit"]:hover { background-color: #ffca28; } .button { background-color: #4CAF50; /* Green */ border: none; color: white; padding: 10px 30px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; } </style> </head> <body class="bg-white" style="background-image: url('assets/images/slider/s1.jpg');"> <div class="topnav"> <a class="active" href="indexnew.php">Home</a> <a href="newsnew.php">News</a> <a href="contact.php">Contact</a> <a href="about.html">About</a> </div> <form accept-charset="UTF-8" method="POST" action="uploadslider.php" enctype="multipart/form-data"> <label class="mr-4">Upload images:</label> <input type="file" name="file1[]" accept=".jpg,.png" multiple required><br><br> <input type="submit" value="Submit" name="submit"> </form> </body> </html>