| Server IP : 82.64.35.208 / Your IP : 192.168.65.1 Web Server : Apache/2.4.68 (Debian) System : Linux 079bc81edf51 6.12.76-linuxkit #1 SMP Tue Jul 21 14:38:37 UTC 2026 aarch64 User : root ( 0) PHP Version : 8.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/html/wp-content/plugins/manager-for-galene-videoconference/views/ |
Upload File : |
{% extends main.twig %}
{% block content %}
<nav class="panel">
<p class="panel-heading">
{{ sprintf( __("Enter Room '%1s' as '%2s'",'manager-for-galene-videoconference') ,$room->displayName,$d['g_type_disp']) }}
</p>
<form method="POST" class="box is-flex-grow-1">
{% wp_nonce_field("access_room","gal_form_id",false,true) %}
<input type="hidden" name='galene_action' value="access_room" >
<input type="hidden" name='galene_room' value="{{{ $room->id }}}" >
{% if(in_array('name',$parts)): %}
<div class="field">
{% if(in_array('code',$parts)): %}
<label class="label">{{ __("Displayname",'manager-for-galene-videoconference') }}</label>
{% else: %}
<label class="label">{{ __("Login",'manager-for-galene-videoconference') }}</label>
{% endif; %}
<div class="control">
<input class="input" type="text" name="galene_login" id="galene_login" required="required" value="{{{ @$d['galene_login'] }}}">
</div>
</div>
{% endif; %}
{% if(in_array('code',$parts)): %}
<div class="field">
<label class="label">{{ __("Code",'manager-for-galene-videoconference') }}</label>
<div class="control">
<input class="input" type="text" name="galene_code" id="galene_code" required="required" value="{{{ @$d['galene_code'] }}}">
</div>
</div>
{% endif; %}
{% if(in_array('password',$parts)): %}
<div class="field">
<label class="label">{{ __("Password",'manager-for-galene-videoconference') }}</label>
<div class="control">
<input class="input" type="password" name="galene_password" id="galene_password" required="required" value="{{{ @$d['galene_password'] }}}">
</div>
</div>
{% endif; %}
<div class="field">
<button class="button is-info" type="submit">{{ __("Next",'manager-for-galene-videoconference') }}</button>
</div>
</form>
</nav>
{% endblock %}