Skip to content

Commit

Permalink
Add userverified page
Browse files Browse the repository at this point in the history
  • Loading branch information
sora32127 committed Apr 30, 2024
1 parent 211f3d4 commit ed6254d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions app/routes/_layout.userVerified.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { NavLink } from "@remix-run/react";
import { H1 } from "~/components/Headings";

export default function UserVerified() {
return (
<div>
<H1>ユーザー本登録完了</H1>
<div className="text-center">
<p>ユーザーの本登録が完了しました。</p>
<NavLink to="/login" className="text-info underline underline-offset-4">ログインページへ移動</NavLink>
</div>
</div>
);
}

0 comments on commit ed6254d

Please sign in to comment.