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