PWA Fundvelo der Caritas.
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.

CaritasServiceFundVeloFoundConclusion.razor 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. @page "/fundvelo/conclusion_found"
  2. @using cwebplusApp.Shared.Services;
  3. @inject NavigationManager NavigationManager
  4. @inject IStringLocalizer<Resources> i18n
  5. @inject PageHistoryManager PageHistoryManager
  6. <div class="row px-3 h-100">
  7. <div class="row no-gutters align-items-start justify-content-center w-100">
  8. <MatHeadline4 Style="font-family:Ubuntu;padding-top:1em">@i18n["Confirmation"]</MatHeadline4>
  9. </div>
  10. <div class="row no-gutters align-items-start justify-content-center w-100">
  11. <MatHeadline6 Style="font-family:Ubuntu">@i18n["FinishedTextFound"]</MatHeadline6>
  12. </div>
  13. <div class="row no-gutters align-items-start justify-content-center w-100">
  14. <Animate Animation="Animations.ZoomIn" Delay="TimeSpan.FromSeconds(0.5)" Duration="TimeSpan.FromSeconds(2.5)">
  15. <Animate Animation="Animations.FadeIn" Delay="TimeSpan.FromSeconds(0.5)" Duration="TimeSpan.FromSeconds(2.5)">
  16. <DoneImage></DoneImage>
  17. </Animate>
  18. </Animate>
  19. </div>
  20. <div class="row no-gutters align-items-end justify-content-center w-100" style="padding-bottom:2em;padding-top:2em">
  21. <div class="col w-100 text-center">
  22. <MatButton Class="w-50" Raised="true" @onclick="Finished">@i18n["Finished"]</MatButton>
  23. </div>
  24. </div>
  25. </div>
  26. @code {
  27. protected override void OnInitialized() {
  28. PageHistoryManager.AddPageToHistory(NavigationManager.Uri);
  29. base.OnInitialized();
  30. }
  31. private void Finished() {
  32. NavigationManager.NavigateTo("caritas_services");
  33. }
  34. }