diff --git a/src/App.vue b/src/App.vue
index 6fe1f74..80efa91 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -8,7 +8,11 @@
fluid
fill-height
style="
- position: absolute;
+ position: fixed;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
z-index: 20;
background-color: rgba(255, 255, 255, 1);
"
diff --git a/src/assets/icons/edit.vue b/src/assets/icons/edit.vue
new file mode 100644
index 0000000..29e25fe
--- /dev/null
+++ b/src/assets/icons/edit.vue
@@ -0,0 +1,14 @@
+
+
+
diff --git a/src/assets/icons/globe.vue b/src/assets/icons/globe.vue
new file mode 100644
index 0000000..94cdc07
--- /dev/null
+++ b/src/assets/icons/globe.vue
@@ -0,0 +1,14 @@
+
+
+
diff --git a/src/assets/icons/password.vue b/src/assets/icons/password.vue
new file mode 100644
index 0000000..a223221
--- /dev/null
+++ b/src/assets/icons/password.vue
@@ -0,0 +1,45 @@
+
+
+
diff --git a/src/assets/icons/user.vue b/src/assets/icons/user.vue
new file mode 100644
index 0000000..0b249bb
--- /dev/null
+++ b/src/assets/icons/user.vue
@@ -0,0 +1,15 @@
+
+
+
diff --git a/src/assets/translations/en.json b/src/assets/translations/en.json
index 93512d8..94fa0a8 100644
--- a/src/assets/translations/en.json
+++ b/src/assets/translations/en.json
@@ -103,8 +103,8 @@
},
"login": {
"title": "Login",
- "username": "Username",
- "password": "Password",
+ "username": "Username (ex: marta)",
+ "password": "Enter Password",
"username_required": "Username is required",
"password_required": "Password is required",
"login": "Login"
@@ -134,7 +134,7 @@
"join": {
"title": "Welcome to {roomName}",
"user_name_label": "User name",
- "shared_computer": "Using a shared computer",
+ "shared_computer": "This is a shared device",
"joining_as": "You are joining as:",
"join": "Join room",
"join_guest": "Join as guest",
diff --git a/src/components/Login.vue b/src/components/Login.vue
index a63ddec..698413f 100644
--- a/src/components/Login.vue
+++ b/src/components/Login.vue
@@ -4,34 +4,34 @@