This commit is contained in:
Karol Wypchlo 2021-02-08 18:27:51 +01:00
parent 879a3e085f
commit 75445923c8
2 changed files with 4 additions and 3 deletions

View File

@ -29,6 +29,8 @@ export async function getServerSideProps(context) {
try { try {
const { status, data } = await kratos.getSelfServiceLoginFlow(flow); const { status, data } = await kratos.getSelfServiceLoginFlow(flow);
console.log("flow", data);
if (status === 200) return { props: { flow: data } }; if (status === 200) return { props: { flow: data } };
throw new Error(`Failed to retrieve flow ${flow} with code ${status}`); throw new Error(`Failed to retrieve flow ${flow} with code ${status}`);

View File

@ -29,6 +29,8 @@ export async function getServerSideProps(context) {
try { try {
const { status, data } = await kratos.getSelfServiceRegistrationFlow(flow); const { status, data } = await kratos.getSelfServiceRegistrationFlow(flow);
console.log("flow", data);
if (status === 200) return { props: { flow: data } }; if (status === 200) return { props: { flow: data } };
throw new Error(`Failed to retrieve flow ${flow} with code ${status}`); throw new Error(`Failed to retrieve flow ${flow} with code ${status}`);
@ -79,9 +81,6 @@ export default function Registration({ flow }) {
initialValues: fields.reduce((acc, field) => ({ ...acc, [field.name]: field.value }), {}), initialValues: fields.reduce((acc, field) => ({ ...acc, [field.name]: field.value }), {}),
}); });
console.log(fields);
console.log("fieldProps", fieldProps);
return ( return (
<div className="min-h-screen bg-gray-50 flex flex-col justify-center py-12 sm:px-6 lg:px-8"> <div className="min-h-screen bg-gray-50 flex flex-col justify-center py-12 sm:px-6 lg:px-8">
<div className="sm:mx-auto sm:w-full sm:max-w-md"> <div className="sm:mx-auto sm:w-full sm:max-w-md">