<%- include('../layouts/header.ejs') %>
<%- include('../layouts/navbar.ejs', { client: client }) %>

<section class="account-page">

    <div class="account-header">

        <h1>My Profile</h1>

        <p>
            Manage your guest account information.
        </p>

    </div>

    <div class="glass-box profile-card">

        <div class="profile-avatar">

            <div class="avatar-circle">

                <%= client.full_name
                    ? client.full_name.charAt(0).toUpperCase()
                    : "G"
                %>

            </div>

        </div>

        <div class="profile-details">

            <div class="profile-row">

                <strong>Full Name</strong>

                <span>
                    <%= client.full_name %>
                </span>

            </div>

            <div class="profile-row">

                <strong>Email Address</strong>

                <span>
                    <%= client.email %>
                </span>

            </div>

            <div class="profile-row">

                <strong>Phone Number</strong>

                <span>
                    <%= client.phone || 'Not Provided' %>
                </span>

            </div>

            <div class="profile-row">

                <strong>Member Since</strong>

                <span>
                    <%= client.createdAt
                        ? client.createdAt.toDateString()
                        : 'N/A'
                    %>
                </span>

            </div>

        </div>

        <div class="profile-actions">

            <a
                href="/client/account/profile/edit"
                class="primary-btn"
            >
                Edit Profile
            </a>

            <a
                href="/client/account/change-password"
                class="secondary-btn"
            >
                Change Password
            </a>

        </div>

    </div>

</section>

<%- include('../layouts/footer.ejs') %>