mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-14 15:23:01 +00:00
layout, components
This commit is contained in:
@@ -1,7 +1,8 @@
|
||||
'use client';
|
||||
import { Button, ButtonVariants } from '#/ui/Button';
|
||||
import { TextInput } from '#/ui/Input';
|
||||
import { useRouter } from 'next/navigation';
|
||||
"use client";
|
||||
import { Button, ButtonVariants } from "#/ui/Button";
|
||||
import { TextInput } from "#/ui/Input";
|
||||
import UserAvatar from "#/ui/UserAvatar";
|
||||
import { useRouter } from "next/navigation";
|
||||
|
||||
export default function Page() {
|
||||
const router = useRouter();
|
||||
@@ -11,17 +12,7 @@ export default function Page() {
|
||||
<h1>Password</h1>
|
||||
<p className="ztdl-p mb-6 block">Enter your password.</p>
|
||||
|
||||
<div className="flex w-full flex-row items-center rounded-full border p-[1px] dark:border-white/20">
|
||||
{/* <Image
|
||||
height={20}
|
||||
width={20}
|
||||
className="avatar-img"
|
||||
src=""
|
||||
alt="user-avatar"
|
||||
/> */}
|
||||
<div className="h-8 w-8 rounded-full bg-primary-dark-800"></div>
|
||||
<span className="ml-4 text-14px">max@zitadel.cloud</span>
|
||||
</div>
|
||||
<UserAvatar name="max@zitadel.com"></UserAvatar>
|
||||
|
||||
<div className="w-full">
|
||||
<TextInput type="password" label="Password" />
|
||||
|
||||
Reference in New Issue
Block a user