Gifari Industries - BD Cyber Security Team
Home
/
home
/
decohaslibrary
/
studentrecruitment.decohaslibrary.ac.tz
/
✏️
Editing: home.php
<?php session_start(); $_SESSION['username']; if(!ISSET($_SESSION['user'])){ header('location: index.php'); } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/> <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/> </head> <body> <nav class="navbar navbar-default"> <div class="container-fluid"> <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a> </div> </nav> <div class="col-md-3"></div> <div class="col-md-6 well"> <h3 class="text-primary">PHP - Simple Login Using PDO</h3> <hr style="border-top:1px dotted #ccc;"/> <div class="col-md-3"></div> <div class="col-md-6"> <center><h2>This is Home Page</h2></center> <center><a href="logout.php">Logout</a></center> </div> </div> </body> </html>
💾 Save
❌ Cancel