Tuesday, 15 October 2024

user home page

 Hi all


Use this code

//userhome.php

<!DOCTYPE html>

<html lang="en">

<?php

session_start();

echo 'Welcome '.$_SESSION['username'];

if(!isset($_SESSION['username']))

{

header('location:index.php');

}



?>

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>User Home</title>

    <style>

        body {

            font-family: Arial, sans-serif;

            background-color: #f4f4f4;

            margin: 0;

            padding: 0;

            display: flex;

            justify-content: center;

            align-items: center;

            height: 100vh;

        }

        .container {

            text-align: center;

            background-color: #fff;

            padding: 30px;

            border-radius: 8px;

            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

        }

        h1 {

            color: #333;

        }

        a {

            display: inline-block;

            margin: 10px;

            padding: 10px 20px;

            background-color: #007BFF;

            color: #fff;

            text-decoration: none;

            border-radius: 4px;

            transition: background-color 0.3s ease;

        }

        a:hover {

            background-color: #0056b3;

        }

    </style>

</head>

<body>


<div class="container">

    <h1>Welcome to User Home</h1>

    <p>Please select an option:</p>

    <a href="profile.php">Go to Profile</a>

    <a href="settings.php">Go to Settings</a>

<a href="viewpatient.php">View Patients</a>

<a href="logout.php">Logout</a>

</div>


</body>

</html>


No comments:

Post a Comment