diff --git a/src/app/components/create-room/AdditionalCreatorInput.tsx b/src/app/components/create-room/AdditionalCreatorInput.tsx
index 936b9b94..84b92231 100644
--- a/src/app/components/create-room/AdditionalCreatorInput.tsx
+++ b/src/app/components/create-room/AdditionalCreatorInput.tsx
@@ -201,7 +201,7 @@ export function AdditionalCreatorInput({
variant="Background"
radii="300"
outlined
- placeholder="@john:server"
+ placeholder="@username:server"
onChange={handleCreatorChange}
onKeyDown={handleCreatorKeyDown}
/>
diff --git a/src/app/components/invite-user-prompt/InviteUserPrompt.tsx b/src/app/components/invite-user-prompt/InviteUserPrompt.tsx
index 82313c3e..ddac0576 100644
--- a/src/app/components/invite-user-prompt/InviteUserPrompt.tsx
+++ b/src/app/components/invite-user-prompt/InviteUserPrompt.tsx
@@ -194,7 +194,7 @@ export function InviteUserPrompt({ room, requestClose }: InviteUserProps) {
ref={inputRef}
onChange={handleSearchChange}
onKeyDown={handleKeyDown}
- placeholder="@john:server"
+ placeholder="@username:server"
name="userIdInput"
variant="Background"
disabled={inviting}
diff --git a/src/app/features/create-chat/CreateChat.tsx b/src/app/features/create-chat/CreateChat.tsx
index eccd4e66..faa4511b 100644
--- a/src/app/features/create-chat/CreateChat.tsx
+++ b/src/app/features/create-chat/CreateChat.tsx
@@ -78,7 +78,7 @@ export function CreateChat({ defaultUserId }: CreateChatProps) {
User ID
Username:
{' '}
- johndoe
+ user123
Matrix ID:
- {` @johndoe:${server}`}
+ {` @user123:${server}`}
Email:
- {` johndoe@${server}`}
+ {` user123@${server}`}