{#
 # The view for the patient room
 #
 # @package openemr
 # @link      http://www.open-emr.org
 # @author    Stephen Nielson <snielson@discoverandchange.com>
 # @copyright Copyright (c) 2023 Comlink Inc <https://comlinkinc.com/>
 # @license   https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3
#}
<div class="card-header">
    <div class="row">
        <div class="col-md-3 telehealth-user-icon">
            <i class="fa fa-user-md"></i>
        </div>

        <div class="col-md-9">
            <h5 class="text-primary">{{ provider.title|text }} {{ provider.fname|text }} {{ provider.mname|text }} {{ provider.lname|text }}</h5>
            {% if provider.specialty is not empty %}
            <h6 class="text-secondary">{{ "Specialty"|xlt}}: {{ provider.specialty|text}}</h6>
            {% endif %}
        </div>
    </div>
</div>
<div class="card-body">
    <div class="row">
        <div class="col">
            <h5>{{ "Appointment Agenda"|xlt }}</h5>
            <p>{{ appointment.notes|text }}</p>
        </div>
    </div>
    <div class="row">
        <div class="col">
            <input disabled class="disabled btn btn-primary btn-comlink-conference-join d-none d-lg-inline-block" type="button" value="{{ "Join Now"|xla }}">
        </div>
    </div>
    <div class="row d-none" class="waiting-room-server-communication">
        <div class="col">
            <p class="alert alert-danger">{{ "We are having problems communicating with the server. Please wait or contact customer support"|xlt }}</p>
        </div>
    </div>
</div>