-
+
+
+
Register
+
Yosha~! Saatnya Bergabung dengan Dimentorin
+
+
+
+
+
+
+
OTP Code
+
+
+
+
+
+
+
+
+
"Senpai~! Pastikan password-mu sekuat pertahanan kastil!"
+
Tips membuat password yang OP:
+
- Minimal 8 karakter (semakin panjang, semakin power-up! ⚡)
+
- Campur huruf besar, kecil, angka, dan simbol untuk kombinasi ultimate!🔥
+
- Jangan pakai password yang gampang ditebak, nanti ketahuan musuh!🚨
+
+
diff --git a/apps/dimentorin/src/app/auth/register/success/layout.tsx b/apps/dimentorin/src/app/auth/register/success/layout.tsx
new file mode 100644
index 0000000..2d8a74d
--- /dev/null
+++ b/apps/dimentorin/src/app/auth/register/success/layout.tsx
@@ -0,0 +1,12 @@
+import { FC, ReactElement } from 'react';
+import { Outlet } from 'react-router-dom';
+
+export const AppLayout: FC = (): ReactElement => {
+ return (
+
+
+
+ );
+};
+
+export default AppLayout;
diff --git a/apps/dimentorin/src/app/auth/register/success/page.tsx b/apps/dimentorin/src/app/auth/register/success/page.tsx
new file mode 100644
index 0000000..a2d1652
--- /dev/null
+++ b/apps/dimentorin/src/app/auth/register/success/page.tsx
@@ -0,0 +1,33 @@
+import { FC, ReactElement } from 'react';
+import { RegisterResetBanner } from "@imphnen-frontend-service/ui/organisms";
+import { Button, Input } from '@imphnen-frontend-service/ui/atoms';
+import { InputForm } from '@imphnen-frontend-service/ui/molecules';
+import { ArrowRightOutlined } from '@ant-design/icons';
+
+export const Components: FC = (): ReactElement => {
+ return (
+
+
+
+
+
+
Register Successfull
+
Yosha~! Saatnya Bergabung dengan Dimentorin!
+
+
Kamu akan memasuki isekai dalam 10 dtk
+
+
+
+
+
+ );
+};
+
+export default Components;
\ No newline at end of file