work on weather services; outbound http request caching; styles updates and icons

This commit is contained in:
2023-08-12 19:19:20 -07:00
parent 7c205632cb
commit 85d72b43d2
55 changed files with 2593 additions and 234 deletions

View File

@@ -0,0 +1,22 @@
<aside class="controls">
<div>
{{# user }}
<p>Logged in as
{{# user.name }}{{ user.name }}{{/ user.name }}
{{^ user.name }}{{ user.username }}{{/ user.name }}
-
</p>
<form action="/logout" method="POST">
<button type="submit">Logout</button>
</form>
{{/ user }}
{{^ user }}
<form action="/login" method="POST">
<button type="submit">Login with OpenID Connect</button>
</form>
{{/ user }}
</div>
{{> color_theme_controls }}
</aside>