このリポジトリは2023-09-09にアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュ、イシューの作成、プルリクエストはできません。
kikikan/backend/resources/js/child/auth/register/error.jsx

26 行
724 B
React
Raw 通常表示 履歴

2021-10-02 12:19:28 +09:00
import React, { useEffect, useState } from 'react';
2021-11-04 17:32:01 +09:00
import { useHistory } from 'react-router';
2021-10-02 12:19:28 +09:00
2021-11-04 15:38:36 +09:00
const ChildSignUpError = () => {
2021-10-02 12:19:28 +09:00
2021-11-04 17:32:01 +09:00
const history = useHistory();
2021-10-02 12:19:28 +09:00
const gotoLogin = () => {
2021-11-04 17:32:01 +09:00
history.push({pathname: '/c-account/login', state: {}});
2021-10-02 12:19:28 +09:00
}
return (
<div>
2021-10-26 13:03:16 +09:00
<p className="text-center font-weight-bold ft-25">本登録エラー</p>
2021-11-10 03:49:19 +09:00
<span className="mt-80-px l-alert__text--error ft-18 ft-xs-16">
2021-10-02 12:19:28 +09:00
登録の経過時間が過ぎております<br/>
2021-11-10 12:38:57 +09:00
お手数ですが再度招待ユーザーに連絡し再登録の手続きをお願いいたします
2021-10-02 12:19:28 +09:00
</span>
</div>
)
}
2021-10-06 03:23:58 +09:00
2021-11-04 15:38:36 +09:00
export default ChildSignUpError;