<?php
$ProfileDB = new Model_Profile;
$UserProfile = $ProfileDB->getRow($this->UserID);
$Knowas = $UserProfile["NickName"] ;
if(empty($UserProfile["NickName"])){
    $Knowas = $UserProfile["FirstName"] ;
}
?>
         <div class="modal-header">
            
            <h4 class="modal-title" id="largeModalHead"><strong>Thank you for updating your profile information</strong> <span class="profile-name"></span></h4>
         </div>
         <div class="modal-body" style="border: 1px solid #ccc;background: #fff; font-size: 14px" >
             <h3><?= $UserProfile["LastName"] . ', ' . $Knowas ?></h3>
             <p>A Footprint Administrator will review your details and activate your account. </p>
                 <p>This could take up to 48 Hours so please be patient with us.</p>

                 <p>Need help to login? Don't hesitate to e-mail us at: <a href="mailto:support@footprintapp.net">support@footprintapp.net</a></p><br />

 

                 <p>Thanks again for joining Footprint!</p>
         </div>
        