From 4b0bf2fd8a1be52e0485ec29ce3a4762d49a64c6 Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Fri, 21 Jun 2024 11:40:13 +1000 Subject: [PATCH] fix: Display a message when no HNS.ID domains are found --- website/templates/home.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/website/templates/home.html b/website/templates/home.html index 7a6ad2a..991624f 100644 --- a/website/templates/home.html +++ b/website/templates/home.html @@ -271,8 +271,11 @@

Logged in with HNS.ID

- Select a HNS.ID domain to log in with
+ {% if hnsid.nfts == [] %} +

No HNS.ID domains found

+ {% else %} + Select a HNS.ID domain to log in with
+ {% endif %}