D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
markniuj
/
bazmeasar.com
/
admin
/
Filename :
addpdf.php
back
Copy
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Add PDF</title> <link rel="stylesheet" href="css.css"> </head> <body> <header> <div class="logo"><img src="logo.png"></div> </header> <div class="mainbody"> <div class="bodyarea"> <div class="dextop"> <h1>Upload PDF</h1> <form action="submit.php" method="POST" enctype="multipart/form-data"> <label for="book_name">Book Name:</label> <input type="text" name="book_name" required><br><br> <label for="book_author">Book Author:</label> <input type="text" name="book_author" required><br><br> <label for="description">Description:</label> <textarea name="description" rows="4" required></textarea><br><br> <label for="pdf_category">PDF Category:</label> <input type="text" name="pdf_category" required><br><br> <label for="pdf_file">PDF File:</label> <input type="file" name="pdf_file" accept=".pdf" required><br><br> <label for="title_cover">Title Cover:</label> <input type="file" name="title_cover" accept="image/*" required><br><br> <input type="submit" value="Upload PDF"> </form> </div> </div> </div> <footer> <a href="https://webograph.pk/">Site BY Webograph.pk</a> </footer> </body> </html>