D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
markniuj
/
bazmeasar.com
/
admin
/
Filename :
success.php
back
Copy
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Success Message</title> <!-- Bootstrap CSS CDN --> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"> <style> body { background-color: #f4f4f4; font-family: Arial, sans-serif; } .center { display: flex; justify-content: center; align-items: center; min-height: 100vh; flex-direction: column; } .header { background-color: #007bff; color: #fff; padding: 20px; border-radius: 5px; text-align: center; margin-bottom: 30px; } .header h1 { font-size: 2.5rem; margin-bottom: 0; } .link-list { list-style: none; padding: 0; text-align: center; } .link-list li { margin-bottom: 10px; } .link-list li a { text-decoration: none; color: #007bff; font-weight: bold; transition: color 0.3s ease-in-out; } .link-list li a:hover { color: #0056b3; } </style> </head> <body> <div class="container"> <div class="row"> <div class="col-md-12"> <div class="center"> <div class="header"> <h1>Form submitted successfully!</h1> </div> <ul class="link-list"> <li><a href="dashboard.php">Dashboard</a></li> <li><a href="addaudio.php">Link 2</a></li> <li><a href="#">Link 3</a></li> <!-- Add more links as needed --> </ul> </div> </div> </div> </div> <!-- Bootstrap JS and jQuery CDN (if needed) --> <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script> <script src="https://cdn.jsdelivr.net