diff --git a/web/src/screens/auth/login.tsx b/web/src/screens/auth/login.tsx index d1247d4..27d820e 100644 --- a/web/src/screens/auth/login.tsx +++ b/web/src/screens/auth/login.tsx @@ -7,6 +7,7 @@ import logo from "../../logo.png"; import { APIClient } from "../../api/APIClient"; import { AuthContext } from "../../utils/Context"; import { PasswordInput, TextInput } from "../../components/inputs/text"; +import { Tooltip } from "react-tooltip"; type LoginFormFields = { username: string; @@ -47,14 +48,13 @@ export const Login = () => { return (
- logo + logo +

+ autobrr +

-
+
@@ -85,6 +85,12 @@ export const Login = () => { > Sign in +
+

+ Forgot? + +

+
diff --git a/web/src/screens/auth/onboarding.tsx b/web/src/screens/auth/onboarding.tsx index 39cae13..d7d999f 100644 --- a/web/src/screens/auth/onboarding.tsx +++ b/web/src/screens/auth/onboarding.tsx @@ -4,6 +4,7 @@ import { useNavigate } from "react-router-dom"; import { APIClient } from "../../api/APIClient"; import { TextField, PasswordField } from "../../components/inputs"; +import logo from "../../logo.png"; interface InputValues { username: string; @@ -40,10 +41,9 @@ export const Onboarding = () => { return (
-

- Create a new user + logo +

+ autobrr

@@ -68,7 +68,7 @@ export const Onboarding = () => { type="submit" className="w-full flex justify-center py-2 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-blue-600 dark:bg-blue-600 hover:bg-blue-700 dark:hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 dark:focus:ring-blue-500" > - Create account! + Create account
diff --git a/web/src/screens/filters/action.tsx b/web/src/screens/filters/action.tsx index 0dfee04..f73bd4a 100644 --- a/web/src/screens/filters/action.tsx +++ b/web/src/screens/filters/action.tsx @@ -13,6 +13,7 @@ import { ChevronRightIcon } from "@heroicons/react/24/solid"; import { DeleteModal } from "../../components/modals"; import { CollapsableSection } from "./details"; import { CustomTooltip } from "../../components/tooltips/CustomTooltip"; +import { Link } from "react-router-dom"; interface FilterActionsProps { filter: Filter; @@ -236,7 +237,7 @@ const TypeForm = ({ action, idx, clients }: TypeFormProps) => {

Choose to ignore rules set in Client Settings.

} /> + tooltip={

Choose to ignore rules set in Client Settings.

} />