-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalert.js
More file actions
30 lines (30 loc) · 1.08 KB
/
alert.js
File metadata and controls
30 lines (30 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
$(document).ready(function () {
$('.btn_information').on('click', function () {
if(localStorage.getItem('status_login') == 'true'){
Swal.fire({
title: "<strong>اطلاعیه</strong>",
icon: "info",
html: `
برای اطلاع بیشتر و ثبت سفارش به لینک زیر مراجعه کنید
`,
showCloseButton: true,
showConfirmButton: false,
showDenyButton: true,
denyButtonText: "<a style='color:#FFFFFFFF;'href='https://web.rubika.ir/#c=u0BDt7m03fbb995549a8a55ea79d670f' target='_top'>لینک</a>",
});
}
else{
Swal.fire({
title: "<strong>هشدار</strong>",
icon: "warning",
html: `
برای ادامه فرایند باید ورود کنید
`,
showCloseButton: true,
showConfirmButton: false,
showDenyButton: true,
denyButtonText: "<a style='color:#FFFFFFFF;'href='login.php' target='_top'>ورود</a>",
});
}
});
});