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.

InfoPage.razor 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. @page "/info"
  2. @inject NavigationManager NavigationManager;
  3. @inject IStringLocalizer<Resources> i18n
  4. <div class="row px-3 h-100">
  5. <div class="text-center w-100">
  6. <img class="w-100" src="/images/caritas_logo.png" style="padding:1em;max-width:320px" />
  7. </div>
  8. <div class="row no-gutters align-items-center w-100">
  9. <table class="w-100">
  10. <tr>
  11. <td class="text-center">
  12. <p class="text-left" style="max-width: 500px;display:inline-block">@i18n["Abouttext"]</p>
  13. </td>
  14. </tr>
  15. <tr>
  16. <td class="text-center">
  17. <MatButton Raised="true" Class="w-100" @onclick="ShowCaritasWebpage" style="max-width:500px">@i18n["Learnmore"]</MatButton>
  18. </td>
  19. </tr>
  20. <tr>
  21. <td class="text-center">
  22. <MatCaption Style="font-family:Ubuntu">Version: 0.0.1</MatCaption>
  23. </td>
  24. </tr>
  25. </table>
  26. </div>
  27. <div class="row no-gutters align-items-end w-100">
  28. <table class="w-100">
  29. <tr>
  30. <td class="text-right">
  31. <MatCaption Style="font-family:Ubuntu">@i18n["DevelopedBy"]</MatCaption>
  32. </td>
  33. </tr>
  34. <tr>
  35. <td class="text-right">
  36. <img src="/images/integrate_logo.png" style="max-width:200px"/>
  37. </td>
  38. </tr>
  39. <tr>
  40. <td class="text-right">
  41. <MatCaption Style="font-family:Ubuntu">Platz 10, Business Village Luzern</MatCaption>
  42. </td>
  43. </tr>
  44. <tr>
  45. <td class="text-right">
  46. <MatCaption Style="font-family:Ubuntu">CH-6039 Root D4</MatCaption>
  47. </td>
  48. </tr>
  49. </table>
  50. </div>
  51. </div>
  52. @code {
  53. private void ShowCaritasWebpage() {
  54. NavigationManager.NavigateTo("http://www.caritas.ch");
  55. }
  56. }