diff --git a/fow-mini/data/index.html b/fow-mini/data/index.html
index 6fe3807..fee5a78 100644
--- a/fow-mini/data/index.html
+++ b/fow-mini/data/index.html
@@ -89,7 +89,15 @@
Welcome
- We need some help connecting FerryClock so that we can get sailing in your local wireless network.
+ We need some help connecting FerryClock so that we can get sailing in your local wireless network.
+
@@ -129,6 +137,7 @@
Connecting...
Whoah there! Connection failed!
+
Error message was:
You can review your connection information and try again.
diff --git a/fow-mini/data/script.js b/fow-mini/data/script.js
index fb45e98..b516f4b 100644
--- a/fow-mini/data/script.js
+++ b/fow-mini/data/script.js
@@ -197,6 +197,7 @@ window.onload = () => {
unhideAndFocus(successStep);
},
(failReason) => {
+ document.querySelector("#errorMessage").textContent = failReason;
steps[nextIdx].classList.add("hidden");
unhideAndFocus(failedStep);
})
diff --git a/fow-mini/data/style.css b/fow-mini/data/style.css
index 8f61283..a5d5093 100644
--- a/fow-mini/data/style.css
+++ b/fow-mini/data/style.css
@@ -173,7 +173,7 @@ html {
button.danger:active {
background-color: rgb(211, 0, 0);
}
-
+
#back {
width: 10%;
padding-left: 10px;
@@ -276,6 +276,10 @@ html {
width: 100%;
}
+ #noscriptWarning {
+ animation: OpacityFadeIn 1s 4s both;
+ }
+
.step>input {
width: calc(100% - 24px);
text-align: center;
diff --git a/fow-mini/lib/fow/ConnectionManager.cpp b/fow-mini/lib/fow/ConnectionManager.cpp
index 262aad8..b0cffea 100644
--- a/fow-mini/lib/fow/ConnectionManager.cpp
+++ b/fow-mini/lib/fow/ConnectionManager.cpp
@@ -103,7 +103,7 @@ ConnectionManager::ConnectionManager(const String programName) : name(programNam
connStatus = "Connection lost";
break;
case WL_DISCONNECTED :
- connStatus = "No connection has been made";
+ connStatus = "Currently disconnected (check that SSID and password are correct)";
break;
default :
connStatus = String("Other (") + WiFi.status() + ")";