diff --git a/ServiceHost/Areas/Admin/Pages/Company/SmsResult/SmsSettings.cshtml b/ServiceHost/Areas/Admin/Pages/Company/SmsResult/SmsSettings.cshtml
index 781ce582..1929e52e 100644
--- a/ServiceHost/Areas/Admin/Pages/Company/SmsResult/SmsSettings.cshtml
+++ b/ServiceHost/Areas/Admin/Pages/Company/SmsResult/SmsSettings.cshtml
@@ -7,37 +7,8 @@
string adminVersion = _0_Framework.Application.Version.AdminVersion;
-
+
+
}
@@ -125,112 +96,9 @@
+
+
}
\ No newline at end of file
diff --git a/ServiceHost/ServiceHost.csproj b/ServiceHost/ServiceHost.csproj
index 56999321..2c3be2d0 100644
--- a/ServiceHost/ServiceHost.csproj
+++ b/ServiceHost/ServiceHost.csproj
@@ -60,6 +60,7 @@
+
@@ -510,6 +511,7 @@
+
diff --git a/ServiceHost/wwwroot/AssetsAdmin/page/SmsSettings/css/SmsSettings.css b/ServiceHost/wwwroot/AssetsAdmin/page/SmsSettings/css/SmsSettings.css
new file mode 100644
index 00000000..24a65599
--- /dev/null
+++ b/ServiceHost/wwwroot/AssetsAdmin/page/SmsSettings/css/SmsSettings.css
@@ -0,0 +1,30 @@
+
+body {
+ background-color: #fefefe;
+ background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%232ebfbf' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
+}
+
+.hiddenTab {
+ display: none;
+}
+
+.errored {
+ animation: shake 300ms;
+ box-shadow: inset 0 0 2px #eb3434, 0 0 5px #eb3434 !important;
+ border: 1px solid #eb3434 !important;
+}
+
+.date-input {
+ text-align: center;
+}
+
+button.rounded-pill {
+ border-radius: 5px !important;
+}
+
+.instantSendSms {
+ background-color: #75aea7;
+ color: white !important;
+}
+
+
diff --git a/ServiceHost/wwwroot/AssetsAdmin/page/SmsSettings/js/SmsSettings.js b/ServiceHost/wwwroot/AssetsAdmin/page/SmsSettings/js/SmsSettings.js
new file mode 100644
index 00000000..4af2608b
--- /dev/null
+++ b/ServiceHost/wwwroot/AssetsAdmin/page/SmsSettings/js/SmsSettings.js
@@ -0,0 +1,106 @@
+$(document).ready(function () {
+
+ $('.time-input').mask('00:00', {
+ translation: {
+ '0': { pattern: /[0-9]/ },
+ // برای اولین رقم ساعت فقط 0-2
+ 'H': { pattern: /[0-2]/ },
+ // اگر اولین رقم 2 باشد دومین رقم فقط 0-3
+ 'h': { pattern: /[0-3]/ },
+ // برای دقیقه
+ 'M': { pattern: /[0-5]/ },
+ 'm': { pattern: /[0-9]/ },
+ }
+ });
+
+
+
+ // پیشفرض: لود تب اول با workshopId
+ loadPartial("/Admin/Company/SmsResult/SmsSettings?handler=InstitutionContractDebtReminderTab");
+ $("#institutionContractDebtReminderTab").addClass("active");
+
+ // کلیک روی تبها
+ $("#institutionContractDebtReminderTab, #blockContractingPartyTab, #legalActionTab, #warningTab").click(function (e) {
+ e.preventDefault();
+
+
+
+ let url = $(this).data("url");
+
+
+
+ switch (this.id) {
+ case "institutionContractDebtReminderTab":
+
+ loadPartial(url);
+
+ $("#institutionContractDebtReminderTab, #blockContractingPartyTab, #legalActionTab, #warningTab").removeClass("active");
+ $(this).addClass("active");
+ break;
+ case "blockContractingPartyTab":
+
+ loadPartial(url);
+ $("#institutionContractDebtReminderTab, #blockContractingPartyTab, #legalActionTab, #warningTab").removeClass("active");
+ $(this).addClass("active");
+
+ break;
+ case "legalActionTab":
+ loadPartial(url);
+ $("#institutionContractDebtReminderTab, #blockContractingPartyTab, #legalActionTab, #warningTab").removeClass("active");
+ $(this).addClass("active");
+ break;
+ case "warningTab":
+ loadPartial(url);
+ $("#institutionContractDebtReminderTab, #blockContractingPartyTab, #legalActionTab, #warningTab").removeClass("active");
+ $(this).addClass("active");
+ break;
+
+ }
+
+ });
+
+ function loadPartial(url) {
+ $.get(url, function (data) {
+ $("#partialContainer").html(data);
+ });
+ }
+
+
+
+
+});
+
+
+
+function remove(id) {
+
+
+
+ $.ajax({
+ dataType: 'json',
+ type: 'GET',
+ url: urlAjaxToRemove,
+ headers: { "RequestVerificationToken": $('input[name="__RequestVerificationToken"]').val() },
+ data: { id: id },
+
+ success: function (response) {
+ if (response.isSuccess) {
+ $.Notification.autoHideNotify('success', 'top center', 'پیام سیستم ', response.message);
+
+
+ setTimeout(function () {
+ $(".li-wizard.step.active").trigger("click");
+
+
+
+ }, 500);
+ } else {
+ $.Notification.autoHideNotify('error', 'top center', 'پیام سیستم ', response.message);
+ }
+
+ },
+ failure: function (response) {
+ //console.log(5, response);
+ }
+ });
+}
\ No newline at end of file