-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into 202410-rss-to-twitter
- Loading branch information
Showing
207 changed files
with
2,187 additions
and
738 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
interface Props { | ||
src: string; | ||
} | ||
const { src, ...props } = Astro.props; | ||
--- | ||
|
||
<div class="iframe-container"> | ||
<iframe src={src} loading="lazy" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture web-share" allowfullscreen {...props}> | ||
<slot /> | ||
</iframe> | ||
</div> | ||
|
||
<style> | ||
iframe { | ||
border: none; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,16 @@ | ||
Multi-factor authentication (MFA) is a security process in which users prove their identity using at least two pieces of evidence. In addition to passwords, users are asked to verify their identity via SMS, authentication applications, or other methods when signing into their accounts. To improve the overall security of the university, UTokyo requires that you enable multi-factor authentication for your UTokyo Account. Please follow the setup procedures in the "[Initial Setup Procedures for Multi-Factor Authentication for UTokyo Accounts](/en/utokyo_account/mfa/initial)". | ||
import If from "@components/utils/If.astro"; | ||
|
||
Currently, some systems cannot be used until multi-factor authentication is enabled, and we plan to gradually expand the number of systems that are subject to such settings. For details, please refer to "[Multi-Factor Authentication is Mandatory for UTokyo Account](/en/notice/2024/mfa100-schedule)". | ||
{/** | ||
* @typedef {object} Props | ||
* @property {boolean} [noLink] 初期設定手順へのリンクを表示しない | ||
*/} | ||
|
||
The University of Tokyo has introduced multi-factor authentication to UTokyo Account to improve information system security. | ||
|
||
Multi-factor authentication (MFA) is a security process in which users prove their identity using at least two pieces of evidence. In addition to passwords, users are asked to verify their identity via SMS, authentication applications, or other methods when signing into their accounts. MFA improves security by reducing the possibility of someone being able to sign in to your account even if your password is known to someone else for some reason. | ||
|
||
On the UTokyo Account, MFA is enabled by users setting up their own initial setup, and we are asking **all users** with a UTokyo Account to enable it. Therefore, some information systems are disabled until you have enabled MFA. It is crucial to ensure the security of your UTokyo Account, not only to protect your personal information but also to protect the information assets held by the university, so we ask you to use multi-factor authentication. | ||
|
||
<If cond={!props.noLink}> | ||
Please follow the setup procedures in the "[Initial Setup Procedures for Multi-Factor Authentication for UTokyo Accounts](/en/utokyo_account/mfa/initial)". | ||
</If> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.