update nextjs example to add credentials

This commit is contained in:
dswbx
2025-03-07 08:56:35 +01:00
parent 01cb9d21b0
commit 8550aef606

View File

@@ -20,12 +20,24 @@ export default async function SSRPage() {
</a> </a>
</> </>
) : ( ) : (
<> <div className="flex flex-col gap-1">
Not logged in.{" "} <p>
<a className="font-medium underline" href="/admin/auth/login"> Not logged in.{" "}
Login <a className="font-medium underline" href="/admin/auth/login">
</a> Login
</> </a>
</p>
<p className="text-xs opacity-50">
Sign in with:{" "}
<b>
<code>test@bknd.io</code>
</b>{" "}
/{" "}
<b>
<code>12345678</code>
</b>
</p>
</div>
)} )}
</p> </p>
</> </>