Files
P42_UI/app/views/applicants/dialogs/ApplicantMemberDialog.html
T
2025-08-27 07:03:09 +00:00

48 lines
2.3 KiB
HTML

<div class="applicant-member-dialog">
<div eicalert class="status"></div>
<div class="lookup">
<label>Please identify your member</label>
<input eicinput type="search" data-path="" name="search" value="" placeholder="Enter member's EU Login ID or email and press enter" />
</div>
<div class="member-form">
<div class="cols-3">
<input eicinput type="hidden" name="uid" data-type="ignore" value="" class="required" />
<div>
<label>Title</label>
<select eicselect class="required" name="gender" data-path=""></select>
</div>
<div>
<label>Firstname</label>
<input eicinput disabled value="" class="required" data-path="" name="firstname" data-type="ignore" />
</div>
<div>
<label>Lastname</label>
<input eicinput disabled value="" class="required" data-path="" name="lastname" data-type="ignore" />
</div>
</div>
<div class="cols-2">
<div>
<label>Email</label>
<input eicinput disabled type="email" value="" data-path="" name="email" data-type="ignore" />
</div>
<div>
<label>Phone</label>
<input eicinput type="tel" value="" class="" data-path="" name="phone"/>
</div>
</div>
<div>
<label>Position</label>
<select eicselect lookup class="required" class="required" name="position" data-path=""></select>
</div>
<div>
<label>Rights</label>
<select eicselect data-path="" name="admin" data-type="boolean" class="required">
<option value="false">&lt;h5&gt;User Level&lt;/h5&gt; Can view organisation information, request access or be invited as contributor to proposal(s)</option>
<option value="true">&lt;h5&gt;Admin Level&lt;/h5&gt; Can manage organisation members (add, remove and update) and handle membership requests</option>
</select>
</div>
<div eicalert danger class="confirmation">
<input eiccheckbox type="checkbox" name="confirmDelete" data-type="ignore" label="Yes, I want to remove this member from my organisation" />
</div>
</div>
</div>