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.1KB

123456789101112131415161718192021222324252627282930
  1. @page "/conclusion_found"
  2. @inject NavigationManager NavigationManager
  3. <div class="row px-3 h-100">
  4. <div class="row no-gutters align-items-start justify-content-center w-100">
  5. <MatHeadline3 Style="font-family:Ubuntu;padding-top:1em">Bestätigung</MatHeadline3>
  6. <MatHeadline6 Style="font-family:Ubuntu">Hier kommen Informationen zum Ende des "Gefunden"-Meldeprozesses</MatHeadline6>
  7. <Animate Animation="Animations.ZoomIn" Delay="TimeSpan.FromSeconds(0.5)" Duration="TimeSpan.FromSeconds(2.5)">
  8. <Animate Animation="Animations.FadeIn" Delay="TimeSpan.FromSeconds(0.5)" Duration="TimeSpan.FromSeconds(2.5)">
  9. <DoneImage></DoneImage>
  10. </Animate>
  11. </Animate>
  12. </div>
  13. <div class="row no-gutters align-items-end justify-content-center w-100" style="padding-bottom:2em;padding-top:2em">
  14. <div class="col w-100 text-center">
  15. <MatButton Class="w-50" Raised="true" @onclick="Finished">Fertig</MatButton>
  16. </div>
  17. </div>
  18. </div>
  19. @code {
  20. private void Finished() {
  21. NavigationManager.NavigateTo("caritas_services");
  22. }
  23. }