Skip to content

Commit b8b58d3

Browse files
authored
style: email placeholder changed across the platform (#3206)
* style: email placeholder changed across the platform * fix: placeholder text
1 parent 75ca932 commit b8b58d3

18 files changed

+27
-27
lines changed

Diff for: space/components/accounts/sign-in-forms/create-password.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export const CreatePasswordForm: React.FC<Props> = (props) => {
101101
onChange={onChange}
102102
ref={ref}
103103
hasError={Boolean(errors.email)}
104-
placeholder="orville.wright@firstflight.com"
104+
placeholder="orville.wright@frstflt.com"
105105
className="h-[46px] w-full border border-onboarding-border-100 !bg-onboarding-background-200 pr-12 text-onboarding-text-400"
106106
disabled
107107
/>

Diff for: space/components/accounts/sign-in-forms/email-form.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export const EmailForm: React.FC<Props> = (props) => {
100100
onChange={onChange}
101101
ref={ref}
102102
hasError={Boolean(errors.email)}
103-
placeholder="orville.wright@firstflight.com"
103+
placeholder="orville.wright@frstflt.com"
104104
className="h-[46px] w-full border border-onboarding-border-100 pr-12 placeholder:text-onboarding-text-400"
105105
/>
106106
{value.length > 0 && (

Diff for: space/components/accounts/sign-in-forms/optional-set-password.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export const OptionalSetPasswordForm: React.FC<Props> = (props) => {
6161
onChange={onChange}
6262
ref={ref}
6363
hasError={Boolean(errors.email)}
64-
placeholder="orville.wright@firstflight.com"
64+
placeholder="orville.wright@frstflt.com"
6565
className="h-[46px] w-full border border-onboarding-border-100 pr-12 text-onboarding-text-400"
6666
disabled
6767
/>

Diff for: space/components/accounts/sign-in-forms/password.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ export const PasswordForm: React.FC<Props> = (props) => {
155155
value={value}
156156
onChange={onChange}
157157
hasError={Boolean(errors.email)}
158-
placeholder="orville.wright@firstflight.com"
158+
placeholder="orville.wright@frstflt.com"
159159
className="h-[46px] w-full border border-onboarding-border-100 pr-12 placeholder:text-onboarding-text-400"
160160
/>
161161
{value.length > 0 && (

Diff for: space/components/accounts/sign-in-forms/self-hosted-sign-in.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ export const SelfHostedSignInForm: React.FC<Props> = (props) => {
9797
value={value}
9898
onChange={onChange}
9999
hasError={Boolean(errors.email)}
100-
placeholder="orville.wright@firstflight.com"
100+
placeholder="orville.wright@frstflt.com"
101101
className="h-[46px] w-full border border-onboarding-border-100 pr-12 placeholder:text-onboarding-text-400"
102102
/>
103103
{value.length > 0 && (

Diff for: space/components/accounts/sign-in-forms/set-password-link.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export const SetPasswordLink: React.FC<Props> = (props) => {
8787
value={value}
8888
onChange={onChange}
8989
hasError={Boolean(errors.email)}
90-
placeholder="orville.wright@firstflight.com"
90+
placeholder="orville.wright@frstflt.com"
9191
className="h-[46px] w-full border border-onboarding-border-100 !bg-onboarding-background-200 pr-12 text-onboarding-text-400"
9292
disabled
9393
/>

Diff for: space/components/accounts/sign-in-forms/unique-code.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ export const UniqueCodeForm: React.FC<Props> = (props) => {
182182
}}
183183
ref={ref}
184184
hasError={Boolean(errors.email)}
185-
placeholder="orville.wright@firstflight.com"
185+
placeholder="orville.wright@frstflt.com"
186186
className="h-[46px] w-full border border-onboarding-border-100 pr-12 placeholder:text-onboarding-text-400"
187187
/>
188188
{value.length > 0 && (

Diff for: space/pages/accounts/password.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ const HomePage: NextPage = () => {
104104
onChange={onChange}
105105
ref={ref}
106106
hasError={Boolean(errors.email)}
107-
placeholder="orville.wright@firstflight.com"
107+
placeholder="orville.wright@frstflt.com"
108108
className="h-[46px] w-full border border-onboarding-border-100 !bg-onboarding-background-200 pr-12 text-onboarding-text-400"
109109
disabled
110110
/>

Diff for: web/components/account/sign-in-forms/create-password.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export const CreatePasswordForm: React.FC<Props> = (props) => {
101101
onChange={onChange}
102102
ref={ref}
103103
hasError={Boolean(errors.email)}
104-
placeholder="orville.wright@firstflight.com"
104+
placeholder="orville.wright@frstflt.com"
105105
className="h-[46px] w-full border border-onboarding-border-100 !bg-onboarding-background-200 pr-12 text-onboarding-text-400"
106106
disabled
107107
/>

Diff for: web/components/account/sign-in-forms/email-form.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export const EmailForm: React.FC<Props> = (props) => {
100100
onChange={onChange}
101101
ref={ref}
102102
hasError={Boolean(errors.email)}
103-
placeholder="orville.wright@firstflight.com"
103+
placeholder="orville.wright@frstflt.com"
104104
className="h-[46px] w-full border border-onboarding-border-100 pr-12 placeholder:text-onboarding-text-400"
105105
/>
106106
{value.length > 0 && (

Diff for: web/components/account/sign-in-forms/optional-set-password.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export const OptionalSetPasswordForm: React.FC<Props> = (props) => {
6161
onChange={onChange}
6262
ref={ref}
6363
hasError={Boolean(errors.email)}
64-
placeholder="orville.wright@firstflight.com"
64+
placeholder="orville.wright@frstflt.com"
6565
className="h-[46px] w-full border border-onboarding-border-100 pr-12 text-onboarding-text-400"
6666
disabled
6767
/>

Diff for: web/components/account/sign-in-forms/password.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ export const PasswordForm: React.FC<Props> = (props) => {
155155
value={value}
156156
onChange={onChange}
157157
hasError={Boolean(errors.email)}
158-
placeholder="orville.wright@firstflight.com"
158+
placeholder="orville.wright@frstflt.com"
159159
className="h-[46px] w-full border border-onboarding-border-100 pr-12 placeholder:text-onboarding-text-400"
160160
/>
161161
{value.length > 0 && (

Diff for: web/components/account/sign-in-forms/self-hosted-sign-in.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ export const SelfHostedSignInForm: React.FC<Props> = (props) => {
9797
value={value}
9898
onChange={onChange}
9999
hasError={Boolean(errors.email)}
100-
placeholder="orville.wright@firstflight.com"
100+
placeholder="orville.wright@frstflt.com"
101101
className="h-[46px] w-full border border-onboarding-border-100 pr-12 placeholder:text-onboarding-text-400"
102102
/>
103103
{value.length > 0 && (

Diff for: web/components/account/sign-in-forms/set-password-link.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export const SetPasswordLink: React.FC<Props> = (props) => {
8787
value={value}
8888
onChange={onChange}
8989
hasError={Boolean(errors.email)}
90-
placeholder="orville.wright@firstflight.com"
90+
placeholder="orville.wright@frstflt.com"
9191
className="h-[46px] w-full border border-onboarding-border-100 !bg-onboarding-background-200 pr-12 text-onboarding-text-400"
9292
disabled
9393
/>

Diff for: web/components/account/sign-in-forms/unique-code.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ export const UniqueCodeForm: React.FC<Props> = (props) => {
181181
}}
182182
ref={ref}
183183
hasError={Boolean(errors.email)}
184-
placeholder="orville.wright@firstflight.com"
184+
placeholder="orville.wright@frstflt.com"
185185
className="h-[46px] w-full border border-onboarding-border-100 pr-12 placeholder:text-onboarding-text-400"
186186
/>
187187
{value.length > 0 && (

Diff for: web/components/instance/setup-form/sign-in-form.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export const InstanceSetupSignInForm: FC<IInstanceSetupEmailForm> = (props) => {
9090
type="email"
9191
value={value}
9292
onChange={onChange}
93-
placeholder="orville.wright@firstflight.com"
93+
placeholder="orville.wright@frstflt.com"
9494
className="h-[46px] w-full border border-onboarding-border-100 pr-12 placeholder:text-onboarding-text-400"
9595
/>
9696
{value.length > 0 && (

Diff for: web/components/onboarding/invite-members.tsx

+10-10
Original file line numberDiff line numberDiff line change
@@ -70,16 +70,16 @@ const workspaceService = new WorkspaceService();
7070
const emailRegex = /^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,}$/i;
7171

7272
const placeholderEmails = [
73-
"charlie.taylor@frstflit.com",
74-
"octave.chanute@frstflit.com",
75-
"george.spratt@frstflit.com",
76-
"frank.coffyn@frstflit.com",
77-
"amos.root@frstflit.com",
78-
"edward.deeds@frstflit.com",
79-
"charles.m.manly@frstflit.com",
80-
"glenn.curtiss@frstflit.com",
81-
"thomas.selfridge@frstflit.com",
82-
"albert.zahm@frstflit.com",
73+
"charlie.taylor@frstflt.com",
74+
"octave.chanute@frstflt.com",
75+
"george.spratt@frstflt.com",
76+
"frank.coffyn@frstflt.com",
77+
"amos.root@frstflt.com",
78+
"edward.deeds@frstflt.com",
79+
"charles.m.manly@frstflt.com",
80+
"glenn.curtiss@frstflt.com",
81+
"thomas.selfridge@frstflt.com",
82+
"albert.zahm@frstflt.com",
8383
];
8484
const InviteMemberForm: React.FC<InviteMemberFormProps> = (props) => {
8585
const {

Diff for: web/pages/accounts/password.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ const HomePage: NextPageWithLayout = () => {
108108
onChange={onChange}
109109
ref={ref}
110110
hasError={Boolean(errors.email)}
111-
placeholder="orville.wright@firstflight.com"
111+
placeholder="orville.wright@frstflt.com"
112112
className="h-[46px] w-full border border-onboarding-border-100 !bg-onboarding-background-200 pr-12 text-onboarding-text-400"
113113
disabled
114114
/>

0 commit comments

Comments
 (0)