New UI layout
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

mian.js 214B

1234567891011
  1. import {isAuthenticated} from "./cookiehelper.js";
  2. function checkUser(params) {
  3. if (isAuthenticated()) {
  4. window.location = "./authentication";
  5. } else {
  6. window.location = "./login";
  7. }
  8. }
  9. checkUser();