Files
Backend-Api/ServiceHost/Areas/Admin/Pages/Company/FilePage/ModalEmployeeDetail.cshtml
2025-04-19 16:11:22 +03:30

96 lines
2.1 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
@model CompanyManagment.App.Contracts.Employee.EditEmployee
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
</div>
<div class="modal-body">
<div class="row">
<fieldset class="m-b-15" style="border: 1px solid #999797; border-radius: 10px; padding: revert">
<legend style="margin-bottom: 5px; font-size: large; border-bottom: 0px; color: #505458; width: 215px; text-align: center;"> @Model.EmployeeFullName </legend>
<div class="col-sm-12 col-sm-12 col-xs-12">
<table id="datatable" class="table table-striped table-bordered">
<thead>
<tr>
<td>
<p>نام کاربری اداره کار</p>
</td>
<td>
<p>رمز عبور اداره کار</p>
</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<p>@Model.MclsUserName</p>
</td>
<td>
<p>@Model.MclsPassword</p>
</td>
</tr>
</tbody>
<thead>
<tr>
<td>
<p>نام کاربری E Service</p>
</td>
<td>
<p>رمز عبور E Service</p>
</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<p>@Model.EserviceUserName</p>
</td>
<td>
<p>@Model.EservicePassword</p>
</td>
</tr>
</tbody>
<thead>
<tr>
<td>
<p>نام کاربری سامانه مالیات</p>
</td>
<td>
<p>رمز عبور سامانه مالیات</p>
</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<p>@Model.TaxOfficeUserName</p>
</td>
<td>
<p>@Model.TaxOfficepassword</p>
</td>
</tr>
</tbody>
<thead>
<tr>
<td>
<p>نام کاربری سامانه ثنا</p>
</td>
<td>
<p>رمز عبور سامانه ثنا</p>
</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<p>@Model.SanaUserName</p>
</td>
<td>
<p>@Model.SanaPassword</p>
</td>
</tr>
</tbody>
</table>
</div>
</fieldset>
</div>
</div>