diff --git a/Readme.md b/Readme.md index 0c18bf5..8eeb2a7 100644 --- a/Readme.md +++ b/Readme.md @@ -18,7 +18,7 @@ This is a rewrite of my [New Tab Page project](https://github.com/NeilBrommer/Ne - [x] Bookmarks - [ ] Manage bookmark containers - [x] Create - - [x] Delete + - [ ] Delete - [ ] Edit - [ ] Manage bookmark groups - [x] Create @@ -30,6 +30,8 @@ This is a rewrite of my [New Tab Page project](https://github.com/NeilBrommer/Ne - [ ] Edit - [x] Use [Refit](https://github.com/reactiveui/refit) for strongly typed API calls - [ ] Support choosing between storing data on the server or in IndexedDB +- [ ] Look into speeding up authorization on page load + - https://github.com/dotnet/aspnetcore/issues/31926 ## Dependancies diff --git a/Start/Client/App.razor b/Start/Client/App.razor index 0bd7390..d6a44f3 100644 --- a/Start/Client/App.razor +++ b/Start/Client/App.razor @@ -4,6 +4,12 @@ + +
+
+ Authorizing... +
+
@if (!context.User.Identity?.IsAuthenticated ?? false) { diff --git a/Start/Client/Sass/app.scss b/Start/Client/Sass/app.scss index 07df8bd..4562001 100644 --- a/Start/Client/Sass/app.scss +++ b/Start/Client/Sass/app.scss @@ -47,6 +47,14 @@ align-items: center; } +.authorizingContainer { + height: 100vh; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; +} + #sidebar { display: flex;