app/template/cosme41/Block/registration_link.twig line 1

Open in your IDE?
  1. <!-- これは<body>タグの終了直前に配置します -->
  2. <script>
  3.     const now = new Date();
  4.     const day = now.getDay();
  5.     const hour = now.getHours();
  6.     const minute = now.getMinutes();
  7.     if (
  8.         (day === 0 && hour >= 10 && hour <= 16) ||
  9.         (day === 0 && hour === 17 && minute < 1) ||
  10.         ((day === 0 || day === 3 || day === 4 || day === 5) && hour === 21 && minute >= 30) || 
  11.         ((day === 0 || day === 3 || day === 4 || day === 5) && (hour === 22 || hour === 23)) ||
  12.         (day === 6 && hour >= 10)
  13.     ) {
  14.         document.getElementById('registrationLink').innerHTML = '<a href="https://cosme.owl-horie.com/entry">新規会員登録</a>';
  15.     }
  16. </script>