diff --git a/app/account/layout.tsx b/app/account/layout.tsx index 83e5557..17d8dee 100644 --- a/app/account/layout.tsx +++ b/app/account/layout.tsx @@ -6,7 +6,7 @@ export default function AccountLayout({ children: React.ReactNode }) { return ( -
{children}
+
{children}
) } diff --git a/app/account/login/page.tsx b/app/account/login/page.tsx index be29d5e..db0237a 100644 --- a/app/account/login/page.tsx +++ b/app/account/login/page.tsx @@ -1,9 +1,10 @@ import Link from "next/link" import { Button } from "@/components/ui/button" -import { Card, CardContent, CardHeader, CardTitle, CardDescription } from "@/components/ui/card" +import { Card, CardContent, CardHeader, CardTitle, CardFooter } from "@/components/ui/card" import { auth, signIn } from "@/auth" import { redirect } from "next/navigation"; import { SiAuthentik } from "react-icons/si" +import { UserPlus } from "lucide-react" export default async function Login() { const session = await auth() @@ -16,8 +17,7 @@ export default async function Login() {
- Log in to your account - If you still have a p0ntus mail account, select "I don't have an account" + LibreCloud
-
- - I don't have an account - -
+ + +
+ +

If you still have a p0ntus mail account, select "Create an Account"

+
) diff --git a/app/account/signup/page.tsx b/app/account/signup/page.tsx index 5eee11d..b46676e 100644 --- a/app/account/signup/page.tsx +++ b/app/account/signup/page.tsx @@ -417,7 +417,7 @@ export default function Signup() {

- A username for Authentik will be generated based on your email. Contact support if a username isn't available. + A username for Authentik will be generated based on your email. Contact support if a username isn't available.

diff --git a/app/layout.tsx b/app/layout.tsx index d3a7093..a7de09b 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -16,9 +16,9 @@ export default function RootLayout({ }) { return ( - - {children} - + + {children} + ) } \ No newline at end of file diff --git a/components/cards/dashboard/Settings/ChangePassword.tsx b/components/cards/dashboard/Settings/ChangePassword.tsx index 8290b1a..26e506f 100644 --- a/components/cards/dashboard/Settings/ChangePassword.tsx +++ b/components/cards/dashboard/Settings/ChangePassword.tsx @@ -1,11 +1,11 @@ -"use client"; +"use client" -import { useState } from "react"; -import { Card, CardContent, CardHeader, CardTitle, CardDescription } from "@/components/ui/card"; -import { Input } from "@/components/ui/input"; -import { Button } from "@/components/ui/button"; -import { Label } from "@/components/ui/label"; -import Link from "next/link"; +import React, { useState } from "react" +import { Card, CardContent, CardHeader, CardTitle, CardDescription } from "@/components/ui/card" +import { Input } from "@/components/ui/input" +import { Button } from "@/components/ui/button" +import { Label } from "@/components/ui/label" +import { Mail, Key, Loader } from "lucide-react" export function ChangePassword() { const [newPassword, setNewPassword] = useState(""); @@ -46,8 +46,9 @@ export function ChangePassword() { return ( - Change Email Password - Please note, this will NOT change your Authentik password. You can change that here. + Change Email Password + Please note, this will NOT change your Authentik password. + {/* TODO: please tell me you added password resets to authentik by now */}
@@ -61,7 +62,7 @@ export function ChangePassword() { />
{message &&

{message}

}