
<!DOCTYPE html>
<html lang="fa" dir="rtl">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>ورود</title>
    <script src="./tailwindcss/3.4.16"></script>
    <link href='./style/IRANSans.css' rel='stylesheet' type='text/css'>
    <style>
        body {
            font-family: 'IRANSans', sans-serif;
        }
        input, button {
            font-family: 'IRANSans', sans-serif;
        }
    </style>
</head>
<body class="bg-gray-100 min-h-screen flex flex-col items-center">
    <header class="w-full bg-blue-600 text-white p-4 shadow-md">
        <h1 class="text-2xl font-bold text-center">ورود به سیستم</h1>
    </header>
    <main class="w-full max-w-md mt-6 px-4">
        <div class="bg-white p-6 rounded-lg shadow-md">
            <h2 class="text-lg font-semibold text-center mb-6">صفحه ورود</h2>
            <form method="post" action="">
                <div class="mb-4">
                    <label for="username" class="block text-gray-700 font-semibold mb-2">نام کاربری:</label>
                    <input type="text" id="username" name="username" maxlength="50" 
                           placeholder="نام کاربری را وارد کنید." 
                           class="w-full p-2 border rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500">
                </div>
                <div class="mb-6">
                    <label for="password" class="block text-gray-700 font-semibold mb-2">رمز عبور:</label>
                    <input type="password" id="password" name="password" maxlength="50" 
                           placeholder="رمز عبور را وارد کنید" 
                           class="w-full p-2 border rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500">
                </div>
                <button type="submit" name="enter" value="ورود" 
                        class="w-full bg-blue-500 text-white px-4 py-2 rounded-md hover:bg-blue-600">
                    ورود
                </button>
            </form>
                    </div>
    </main>
</body>
</html>
?>