Skip to content

Commit

Permalink
[web] Show email on password screen (#1664)
Browse files Browse the repository at this point in the history
<img width="292" alt="Screenshot 2024-05-09 at 11 39 46"
src="https://github.com/ente-io/ente/assets/24503581/6e0a615e-473d-4eed-b2b9-7e65ea57b578">
  • Loading branch information
mnvr authored May 9, 2024
2 parents 70878e8 + 75d2396 commit 9089f0b
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 7 deletions.
3 changes: 1 addition & 2 deletions web/apps/photos/src/components/Directory/index.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import { ensureElectron } from "@/next/electron";
import log from "@/next/log";
import LinkButton from "@ente/shared/components/LinkButton";
import { Tooltip } from "@mui/material";
import { styled } from "@mui/material/styles";
import { Tooltip, styled } from "@mui/material";

const DirectoryPathContainer = styled(LinkButton)(
({ width }) => `
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { Paper } from "@mui/material";
import { styled } from "@mui/material/styles";
import { Paper, styled } from "@mui/material";

export const LivePhotoBtnContainer = styled(Paper)`
border-radius: 4px;
Expand Down
2 changes: 1 addition & 1 deletion web/apps/photos/src/components/WatchFolder.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ import {
Stack,
Tooltip,
Typography,
styled,
} from "@mui/material";
import { styled } from "@mui/material/styles";
import { CollectionMappingChoiceModal } from "components/Upload/CollectionMappingChoiceModal";
import { t } from "i18next";
import { AppContext } from "pages/_app";
Expand Down
20 changes: 18 additions & 2 deletions web/packages/accounts/pages/credentials.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { VerticallyCentered } from "@ente/shared/components/Container";
import EnteSpinner from "@ente/shared/components/EnteSpinner";
import FormPaper from "@ente/shared/components/Form/FormPaper";
import FormPaperFooter from "@ente/shared/components/Form/FormPaper/Footer";
import FormPaperTitle from "@ente/shared/components/Form/FormPaper/Title";
import LinkButton from "@ente/shared/components/LinkButton";
import VerifyMasterPasswordForm, {
VerifyMasterPasswordFormProps,
Expand Down Expand Up @@ -39,6 +38,7 @@ import {
setKey,
} from "@ente/shared/storage/sessionStorage";
import { KeyAttributes, User } from "@ente/shared/user/types";
import { Typography, styled } from "@mui/material";
import { t } from "i18next";
import { useRouter } from "next/router";
import { useEffect, useState } from "react";
Expand Down Expand Up @@ -259,7 +259,7 @@ export default function Credentials({ appContext, appName }: PageProps) {
return (
<VerticallyCentered>
<FormPaper style={{ minWidth: "320px" }}>
<FormPaperTitle>{t("PASSWORD")}</FormPaperTitle>
<Title>{user.email}</Title>

<VerifyMasterPasswordForm
buttonText={t("VERIFY_PASSPHRASE")}
Expand All @@ -281,3 +281,19 @@ export default function Credentials({ appContext, appName }: PageProps) {
</VerticallyCentered>
);
}

const Title: React.FC<React.PropsWithChildren> = ({ children }) => {
return (
<Title_>
<Typography variant="h2">{t("PASSWORD")}</Typography>
<Typography color="text.faint">{children}</Typography>
</Title_>
);
};

const Title_ = styled("div")`
margin-block-end: 4rem;
display: flex;
flex-direction: column;
gap: 8px;
`;

0 comments on commit 9089f0b

Please sign in to comment.