You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 rivejä
301 B

  1. @using Models.Identity
  2. @page "/"
  3. @code{
  4. protected override async void OnInitialized()
  5. {
  6. var is_logedin = await LocalStorage.ContainKeyAsync(Statics.LoginTokenKey);
  7. if (!is_logedin)
  8. NavigationManager.NavigateTo("/login");
  9. base.OnInitialized();
  10. }
  11. }