
<!DOCTYPE html>
<html lang="id">
<head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Login</title>
    <style>
        body { 
            background-color: #2c2f33; 
            font-family: Arial, sans-serif; 
            color: #fff; 
            display: flex; 
            justify-content: center; 
            align-items: center; 
            height: 100vh; 
            margin: 0; 
        }
        form { 
            background-color: #23272a; 
            padding: 20px; 
            border-radius: 5px; 
            box-shadow: 0 0 10px rgba(0,0,0,0.5); 
            width: 100%; 
            max-width: 350px; /* agar responsif */
            display: flex; 
            flex-direction: column; 
            align-items: center; /* item di tengah secara horizontal */
            justify-content: center; /* item di tengah secara vertikal */
        }
        h2 {
            margin-bottom: 15px;
        }
        .error {
            color: #ff4d4d; 
            margin-bottom: 10px; 
            text-align: center;
            width: 100%;
        }
        input[type="password"] { 
            width: 100%; 
            padding: 10px; 
            margin: 10px 0; 
            border: none; 
            border-radius: 3px; 
            box-sizing: border-box; /* agar padding tidak membuat lebar bertambah */
        }
        input[type="submit"] { 
            background-color: #7289da; 
            border: none; 
            padding: 10px 20px; 
            color: white; 
            border-radius: 3px; 
            cursor: pointer; 
            width: 100%; /* agar tombol juga lebar penuh */
            margin-top: 10px;
            font-size: 1em;
        }
    </style>
</head>
<body>
    <form method="post">
        <h2>Login</h2>
                <input type="password" name="password" placeholder="Enter Password" required />
        <input type="submit" value="Login" />
    </form>
</body>
</html>

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://fvchildrensdentistry.com/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://fvchildrensdentistry.com/wp-sitemap-posts-post-1.xml</loc></sitemap><sitemap><loc>https://fvchildrensdentistry.com/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://fvchildrensdentistry.com/wp-sitemap-taxonomies-category-1.xml</loc></sitemap><sitemap><loc>https://fvchildrensdentistry.com/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
