From c770b9ec22b89551f57aa5051fc7f15f96de5d8d Mon Sep 17 00:00:00 2001 From: Henry Wilkinson Date: Thu, 20 Mar 2025 19:50:43 -0400 Subject: [PATCH] frontend: move name field to the top of the signup form (#2508) Fixes #2507 Does what it says on the tin! --- .../src/features/accounts/sign-up-form.ts | 34 +++++++++---------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/frontend/src/features/accounts/sign-up-form.ts b/frontend/src/features/accounts/sign-up-form.ts index 349e4a13..1f0e5410 100644 --- a/frontend/src/features/accounts/sign-up-form.ts +++ b/frontend/src/features/accounts/sign-up-form.ts @@ -85,6 +85,23 @@ export class SignUpForm extends LiteElement {
${serverError} +
+ + +

+ ${msg( + "Your full name, nickname, or another name that org collaborators can see.", + )} +

+
${this.email ? html` @@ -136,23 +153,6 @@ export class SignUpForm extends LiteElement {

${when(this.pwStrengthResults, this.renderPasswordStrength)}
-
- - -

- ${msg( - "Your full name, nickname, or another name that org collaborators can see.", - )} -

-