diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2022-03-11 14:20:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-11 13:20:00 +0000 |
commit | 003cc6910af177fec86ae7f43683d146975c7f4b (patch) | |
tree | 4e88aadc57585ea4e50b7067fed76975f1373714 /synapse/res | |
parent | Add type hints to `tests/rest`. (#12208) (diff) | |
download | synapse-003cc6910af177fec86ae7f43683d146975c7f4b.tar.xz |
Update the SSO username picker template to comply with SIWA guidelines (#12210)
Fixes https://github.com/matrix-org/synapse/issues/12205
Diffstat (limited to 'synapse/res')
-rw-r--r-- | synapse/res/templates/sso_auth_account_details.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/synapse/res/templates/sso_auth_account_details.html b/synapse/res/templates/sso_auth_account_details.html index 00e1dcdbb8..41315e4fd4 100644 --- a/synapse/res/templates/sso_auth_account_details.html +++ b/synapse/res/templates/sso_auth_account_details.html @@ -130,15 +130,15 @@ </head> <body> <header> - <h1>Your account is nearly ready</h1> - <p>Check your details before creating an account on {{ server_name }}</p> + <h1>Choose your user name</h1> + <p>This is required to create your account on {{ server_name }}, and you can't change this later.</p> </header> <main> <form method="post" class="form__input" id="form"> <div class="username_input" id="username_input"> <label for="field-username">Username</label> <div class="prefix">@</div> - <input type="text" name="username" id="field-username" autofocus> + <input type="text" name="username" id="field-username" value="{{ user_attributes.localpart }}" autofocus> <div class="postfix">:{{ server_name }}</div> </div> <output for="username_input" id="field-username-output"></output> |