<%- include('../layouts/header.ejs') %>
<%- include('../layouts/navbar.ejs', { client: client }) %>

<section class="auth-page">

    <div class="auth-card">

        <h1>Change Password</h1>

        <p>Update your account password securely.</p>

        <form action="/client/account/change-password" method="POST">

            <input
                type="password"
                name="current_password"
                placeholder="Current Password"
                required
            >

            <input
                type="password"
                name="new_password"
                placeholder="New Password"
                required
            >

            <input
                type="password"
                name="confirm_password"
                placeholder="Confirm New Password"
                required
            >

            <button type="submit">
                Update Password
            </button>

        </form>

    </div>

</section>

<%- include('../layouts/footer.ejs') %>