Use "connect your account" instead of login

This commit is contained in:
arne 2025-11-18 22:25:52 +01:00
commit 51d8a023fe

View file

@ -197,9 +197,9 @@
(defn login-section [] (defn login-section []
[:section.login [:section.login
[:h2 "Login"] [:h2 "Connect your account"]
[: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 "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 login to continue."]] [:p [:strong "Please connect your account to continue."]]
[:form.login-section {:on-submit (fn [e] [:form.login-section {:on-submit (fn [e]
(let [instance-url (-> (js/FormData. (.-target e)) (let [instance-url (-> (js/FormData. (.-target e))
(.get "instance-url")) (.get "instance-url"))
@ -216,7 +216,7 @@
:name "instance-url" :name "instance-url"
:type "url" :type "url"
:required true}] :required true}]
[:button {:type "submit"} "Login"]]]) [:button {:type "submit"} "◰ Connect"]]])
;; favorites section ;; favorites section