diff --git a/packages/ui/src/containers/CreateAccount/index.test.tsx b/packages/ui/src/containers/CreateAccount/index.test.tsx
index 4f9986da8..16a0f3dc3 100644
--- a/packages/ui/src/containers/CreateAccount/index.test.tsx
+++ b/packages/ui/src/containers/CreateAccount/index.test.tsx
@@ -12,9 +12,9 @@ jest.mock('@/apis/register', () => ({ register: jest.fn(async () => Promise.reso
describe('', () => {
test('default render', () => {
const { queryByText, container } = renderWithPageContext();
- expect(container.querySelector('input[name="username"]')).not.toBeNull();
- expect(container.querySelector('input[name="password"]')).not.toBeNull();
- expect(container.querySelector('input[name="confirm_password"]')).not.toBeNull();
+ expect(container.querySelector('input[name="new-username"]')).not.toBeNull();
+ expect(container.querySelector('input[name="new-password"]')).not.toBeNull();
+ expect(container.querySelector('input[name="confirm-new-password"]')).not.toBeNull();
expect(queryByText('action.create')).not.toBeNull();
});
@@ -42,7 +42,7 @@ describe('', () => {
const { queryByText, getByText, container } = renderWithPageContext();
const submitButton = getByText('action.create');
- const usernameInput = container.querySelector('input[name="username"]');
+ const usernameInput = container.querySelector('input[name="new-username"]');
if (usernameInput) {
fireEvent.change(usernameInput, { target: { value: '1username' } });
@@ -65,7 +65,7 @@ describe('', () => {
test('username with special character should throw', () => {
const { queryByText, getByText, container } = renderWithPageContext();
const submitButton = getByText('action.create');
- const usernameInput = container.querySelector('input[name="username"]');
+ const usernameInput = container.querySelector('input[name="new-username"]');
if (usernameInput) {
fireEvent.change(usernameInput, { target: { value: '@username' } });
@@ -88,7 +88,7 @@ describe('', () => {
test('password less than 6 chars should throw', () => {
const { queryByText, getByText, container } = renderWithPageContext();
const submitButton = getByText('action.create');
- const passwordInput = container.querySelector('input[name="password"]');
+ const passwordInput = container.querySelector('input[name="new-password"]');
if (passwordInput) {
fireEvent.change(passwordInput, { target: { value: '12345' } });
@@ -111,8 +111,8 @@ describe('', () => {
test('password mismatch with confirmPassword should throw', () => {
const { queryByText, getByText, container } = renderWithPageContext();
const submitButton = getByText('action.create');
- const passwordInput = container.querySelector('input[name="password"]');
- const confirmPasswordInput = container.querySelector('input[name="confirm_password"]');
+ const passwordInput = container.querySelector('input[name="new-password"]');
+ const confirmPasswordInput = container.querySelector('input[name="confirm-new-password"]');
const usernameInput = container.querySelector('input[name="username"]');
if (usernameInput) {
@@ -148,9 +148,9 @@ describe('', () => {
);
const submitButton = getByText('action.create');
- const passwordInput = container.querySelector('input[name="password"]');
- const confirmPasswordInput = container.querySelector('input[name="confirm_password"]');
- const usernameInput = container.querySelector('input[name="username"]');
+ const passwordInput = container.querySelector('input[name="new-password"]');
+ const confirmPasswordInput = container.querySelector('input[name="confirm-new-password"]');
+ const usernameInput = container.querySelector('input[name="new-username"]');
if (usernameInput) {
fireEvent.change(usernameInput, { target: { value: 'username' } });
diff --git a/packages/ui/src/containers/CreateAccount/index.tsx b/packages/ui/src/containers/CreateAccount/index.tsx
index 822f18aa9..bc7310b1c 100644
--- a/packages/ui/src/containers/CreateAccount/index.tsx
+++ b/packages/ui/src/containers/CreateAccount/index.tsx
@@ -83,7 +83,7 @@ const CreateAccount = ({ className, autoFocus }: Props) => {
{
@@ -92,7 +92,7 @@ const CreateAccount = ({ className, autoFocus }: Props) => {
/>
{
/>