diff --git a/changes/changelog.d/933.bugfix b/changes/changelog.d/933.bugfix
new file mode 100644
index 0000000000000000000000000000000000000000..ff8712be21d498316605bd7b961093d757071764
--- /dev/null
+++ b/changes/changelog.d/933.bugfix
@@ -0,0 +1 @@
+Ensure password input doesn't overflow outside of container (#933)
diff --git a/changes/changelog.d/945.bugfix b/changes/changelog.d/945.bugfix
new file mode 100644
index 0000000000000000000000000000000000000000..ef46473d16e2af74e3924c321e12f7bd0f100186
--- /dev/null
+++ b/changes/changelog.d/945.bugfix
@@ -0,0 +1 @@
+Fixed escaped pod name displayed on home/about page (#945)
diff --git a/changes/changelog.d/search-remote.enhancement b/changes/changelog.d/search-remote.enhancement
new file mode 100644
index 0000000000000000000000000000000000000000..0ddde5f3ca42886ec8154da30d4b7af8cfb4596a
--- /dev/null
+++ b/changes/changelog.d/search-remote.enhancement
@@ -0,0 +1 @@
+Added feedback via loading spinner when searching a remote library
diff --git a/front/src/components/About.vue b/front/src/components/About.vue
index 3c84b48f9642bc132b54cd16a8b0508fb669711e..ae8fd24dccf11b32160c8ce92aa466d475bcfab1 100644
--- a/front/src/components/About.vue
+++ b/front/src/components/About.vue
@@ -3,10 +3,12 @@
     <section :class="['ui', 'head', {'with-background': banner}, 'vertical', 'center', 'aligned', 'stripe', 'segment']" :style="headerStyle">
       <div class="segment-content">
         <h1 class="ui center aligned large header">
-          <translate translate-context="Content/Home/Header"
+          <span
+            v-translate="{podName: podName}"
+            translate-context="Content/Home/Header"
             :translate-params="{podName: podName}">
-            About %{ podName }
-          </translate>
+            About %{ podName }!
+          </span>
           <div v-if="shortDescription" class="sub header">
             {{ shortDescription }}
           </div>
diff --git a/front/src/components/Home.vue b/front/src/components/Home.vue
index 34bc19a32c3fd836af59ec0abd260c196e0c5174..dfa040ea80715dcd3f5c198908421eb2fbe0cfd7 100644
--- a/front/src/components/Home.vue
+++ b/front/src/components/Home.vue
@@ -3,10 +3,12 @@
     <section :class="['ui', 'head', {'with-background': banner}, 'vertical', 'center', 'aligned', 'stripe', 'segment']" :style="headerStyle">
       <div class="segment-content">
         <h1 class="ui center aligned large header">
-          <translate translate-context="Content/Home/Header"
+          <span
+            v-translate="{podName: podName}"
+            translate-context="Content/Home/Header"
             :translate-params="{podName: podName}">
             Welcome to %{ podName }!
-          </translate>
+          </span>
           <div v-if="shortDescription" class="sub header">
             {{ shortDescription }}
           </div>
diff --git a/front/src/components/forms/PasswordInput.vue b/front/src/components/forms/PasswordInput.vue
index 702be4f66a5642493012afd70ae3ea7d949dd134..fe1a01a9ff688a599f6ca96af9061ecc12e675b5 100644
--- a/front/src/components/forms/PasswordInput.vue
+++ b/front/src/components/forms/PasswordInput.vue
@@ -1,5 +1,5 @@
 <template>
-  <div class="ui action input">
+  <div class="ui fluid action input">
     <input
     required
     name="password"
diff --git a/front/src/views/content/remote/Card.vue b/front/src/views/content/remote/Card.vue
index 0fbb94c0cc76d7d6f10e5221ea6e4aa29797e3a6..d87b7f3b45231b0cddb08cd4984030ea183e3b66 100644
--- a/front/src/views/content/remote/Card.vue
+++ b/front/src/views/content/remote/Card.vue
@@ -142,7 +142,7 @@ export default {
     library: {type: Object, required: true},
     displayFollow: {type: Boolean, default: true},
     displayScan: {type: Boolean, default: true},
-    displayCopyFid: {type: Boolean, default: false},
+    displayCopyFid: {type: Boolean, default: true},
   },
   data () {
     return {
diff --git a/front/src/views/content/remote/ScanForm.vue b/front/src/views/content/remote/ScanForm.vue
index 5c68bf130872da28041ac950a25fe9a063f8280b..9a3ee9ae8db2f2dfdc9a066a719fb2de3c00a770 100644
--- a/front/src/views/content/remote/ScanForm.vue
+++ b/front/src/views/content/remote/ScanForm.vue
@@ -10,7 +10,7 @@
       <label><translate translate-context="Content/Library/Input.Label/Verb">Search a remote library</translate></label>
       <div :class="['ui', 'action', {loading: isLoading}, 'input']">
         <input name="url" v-model="query" :placeholder="labels.placeholder" type="url">
-        <button type="submit" class="ui icon button">
+        <button type="submit" :class="['ui', 'icon', {loading: isLoading}, 'button']">
           <i class="search icon"></i>
         </button>
       </div>