New UI layout
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567
  1. import {getCookie, isAuthenticated} from "./cookiehelper.js";
  2. import {initListIndex} from "./list.index.js";
  3. if (isAuthenticated()) {
  4. initListIndex();
  5. } else {
  6. window.location = "../login";
  7. }