diff --git a/who-am-i/static/style.css b/who-am-i/static/style.css index 6f42348..89f0fa4 100644 --- a/who-am-i/static/style.css +++ b/who-am-i/static/style.css @@ -60,6 +60,15 @@ main { max-width: 21rem; } +.explain { + border-bottom: 1px dashed #888; + margin-bottom: 1rem; + padding-bottom: 2rem; +} +.explain p { + text-align: left; +} + #error-message { font-size: 0.8rem; color: #a31; @@ -77,6 +86,9 @@ p { p.detail { font-size: 0.8rem; } +p.detail.no { + font-style: italic; +} .parent-host { font-weight: bold; color: #48c; diff --git a/who-am-i/templates/hello.hbs b/who-am-i/templates/hello.hbs index 1009eeb..5d62822 100644 --- a/who-am-i/templates/hello.hbs +++ b/who-am-i/templates/hello.hbs @@ -2,7 +2,9 @@ {{#*inline "main"}}
- This is a little identity-verifying service for microcosm demos. +
+

This is a little identity-verifying service for microcosm demos.

+
{{#if did}} @@ -68,6 +70,10 @@ return info.handle; } + {{else}} +

+ No identity connected. +

{{/if}}
{{/inline}}