diff --git a/app/src/config.template.js b/app/src/config.template.js
index 02526065..1ad1386a 100644
--- a/app/src/config.template.js
+++ b/app/src/config.template.js
@@ -10,6 +10,7 @@ module.exports = {
'Start your next video call with a single click. No download, plug-in, or login is required. Just get straight to talking, messaging, and sharing your screen.',
joinDescription: 'Pick a room name.
How about this one?',
joinButtonLabel: 'JOIN ROOM',
+ joinLastLabel: 'Your recent room:',
},
site: {
landingTitle: 'MiroTalk a Free Secure Video Calls, Chat & Screen Sharing.',
diff --git a/public/js/brand.js b/public/js/brand.js
index b741f57f..3a75accc 100644
--- a/public/js/brand.js
+++ b/public/js/brand.js
@@ -21,6 +21,7 @@ const appleTouchIcon = document.getElementById('appleTouchIcon');
const appTitle = document.getElementById('appTitle');
const appDescription = document.getElementById('appDescription');
const appJoinDescription = document.getElementById('appJoinDescription');
+const appJoinLastRoom = document.getElementById('appJoinLastRoom');
const features = document.getElementById('features');
const browsers = document.getElementById('browsers');
@@ -42,6 +43,7 @@ let brand = {
'Start your next video call with a single click. No download, plug-in, or login is required. Just get straight to talking, messaging, and sharing your screen.',
joinDescription: 'Pick a room name.
How about this one?',
joinButtonLabel: 'JOIN ROOM',
+ joinLastLabel: 'Your recent room:',
},
site: {
landingTitle: 'MiroTalk a Free Secure Video Calls, Chat & Screen Sharing.',
@@ -139,6 +141,7 @@ function handleBrand() {
if (appDescription) appDescription.textContent = brand.app.description;
if (appJoinDescription) appJoinDescription.innerHTML = brand.app.joinDescription;
if (joinRoomButton) joinRoomButton.innerText = brand.app.joinButtonLabel; // common.js
+ if (appJoinLastRoom) appJoinLastRoom.innerText = brand.app.joinLastLabel;
!brand.html.features && elementDisplay(features, false);
!brand.html.browsers && elementDisplay(browsers, false);
diff --git a/public/views/landing.html b/public/views/landing.html
index 914bf297..626c1c57 100755
--- a/public/views/landing.html
+++ b/public/views/landing.html
@@ -155,7 +155,7 @@