Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/consent/app/login/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const Login = async ({ searchParams }: { searchParams: LoginProps }) => {
<MainContent>
<Card>
<Logo />
<Heading>Login In with Blink</Heading>
<Heading>Log in with Blink</Heading>
<SubHeading>
Enter your registered email to log in to this application.
</SubHeading>
Expand Down
2 changes: 1 addition & 1 deletion apps/consent/components/login-link.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const LoginLink: React.FC<LoginLinkProp> = ({ href }) => {
<p className="font-medium text-sm">
Already have an Account?{" "}
<span className="font-semibold text-[var(--primaryButtonBackground)] dark:text-[var(--primaryButtonBackground)] hover:underline">
Login Here.
Log in here.
</span>
</p>
</Link>
Expand Down
4 changes: 2 additions & 2 deletions apps/consent/components/phone-auth/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import SubHeading from "@/components/sub-heading"

interface PhoneAuth {
login_challenge: string
authAction: "Register" | "Login"
authAction: "Register" | "Log in"
}

const PhoneAuth = async ({ login_challenge, authAction }: PhoneAuth) => {
Expand Down Expand Up @@ -50,7 +50,7 @@ const PhoneAuth = async ({ login_challenge, authAction }: PhoneAuth) => {
<MainContent>
<Card>
<Logo />
<Heading>{authAction} In with Blink</Heading>
<Heading>{authAction} with Blink</Heading>
<SubHeading>{subHeadingMessage}</SubHeading>
<PhoneAuthForm
authAction={authAction}
Expand Down
2 changes: 1 addition & 1 deletion apps/consent/components/phone-auth/phone-auth-form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ const PhoneAuthForm: React.FC<AuthFormProps> = ({
data-testid="phone_number_input"
value={phoneNumber}
required
placeholder="Phone Number"
placeholder="Phone number"
id="phone"
name="phone"
onChange={handlePhoneNumberChange}
Expand Down
2 changes: 1 addition & 1 deletion apps/consent/components/register-link.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const RegisterLink: React.FC<RegisterLinkProp> = ({ href }) => {
<p className="font-medium text-sm">
Don&apos;t have an Account?{" "}
<span className="font-semibold text-[var(--primaryButtonBackground)] dark:text-[var(--primaryButtonBackground)] hover:underline">
Register Here.
Register here.
</span>
</p>
</Link>
Expand Down
Loading