From 51d8a023fe0e9f300caccc174e37f5ea1ab7dd4b Mon Sep 17 00:00:00 2001 From: arne Date: Tue, 18 Nov 2025 22:25:52 +0100 Subject: [PATCH] Use "connect your account" instead of login --- src/computersandblues/lodestone/app.cljs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/computersandblues/lodestone/app.cljs b/src/computersandblues/lodestone/app.cljs index 7fe2f46..5439daa 100644 --- a/src/computersandblues/lodestone/app.cljs +++ b/src/computersandblues/lodestone/app.cljs @@ -197,9 +197,9 @@ (defn login-section [] [:section.login - [:h2 "Login"] - [:p "After logging in, Lodestone will load the posts you starred, and allow you to efficiently sort an search them. All data is processed privately and locally in your browser."] - [:p [:strong "Please login to continue."]] + [:h2 "Connect your account"] + [:p "After connecting your account, Lodestone will load the posts you starred, and allow you to efficiently search through them. All data is processed privately and locally in your browser."] + [:p [:strong "Please connect your account to continue."]] [:form.login-section {:on-submit (fn [e] (let [instance-url (-> (js/FormData. (.-target e)) (.get "instance-url")) @@ -216,7 +216,7 @@ :name "instance-url" :type "url" :required true}] - [:button {:type "submit"} "Login"]]]) + [:button {:type "submit"} "◰ Connect"]]]) ;; favorites section