-
Step 3: Register or Log in
+
Create a new account if you don't have one, or log in to your existing account.
diff --git a/src/vector/mobile_guide/index.js b/src/vector/mobile_guide/index.js
index 8fa4f172cf..b2d007ac53 100644
--- a/src/vector/mobile_guide/index.js
+++ b/src/vector/mobile_guide/index.js
@@ -9,11 +9,15 @@ async function initPage() {
document.getElementById('back_to_riot_button').onclick = onBackToRiotClick;
const config = await getVectorConfig('..');
- let hsUrl = 'https://matrix.org/';
+ let hsUrl;
if (config && config['default_hs_url']) {
hsUrl = config['default_hs_url'];
}
- document.getElementById('hs_url').innerHTML = hsUrl;
+ if (hsUrl && hsUrl !== 'https://matrix.org/') {
+ document.getElementById('step2_container').style.display = 'block';
+ document.getElementById('hs_url').innerHTML = hsUrl;
+ document.getElementById('step_login_header').innerHTML= 'Step 3: Register or Log in';
+ }
}
initPage();