Add initial file for popup

This commit is contained in:
Andrew Shumway
2023-08-16 10:55:24 -06:00
parent 01c18c9624
commit 9d16738c83
3 changed files with 17 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
(function(global ) {
"use strict";
var cookie = window.GOVUK.getCookie('notify_admin_session');
if (cookie) {
window.alert("Session will expire: Cookie Value" + cookie);
} else {
window.alert('Session has expired');
}
console.log(cookie);
})(window);