Advertisement
YourMain12

Admin Cookie

Jan 8th, 2023
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function setAdminCookie() {
  2.   var d = new Date();
  3.   d.setTime(d.getTime() + (365*24*60*60*1000));
  4.   var expires = "expires="+ d.toUTCString();
  5.   document.cookie = "isAdmin=true;" + expires + ";path=/";
  6. }
  7.  
Tags: JavaScript
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement