PWA Fundvelo der Caritas.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

InfoPage.razor 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. @page "/info"
  2. @inject NavigationManager NavigationManager;
  3. <div class="row px-3 h-100">
  4. <div class="align-items-center justify-content-start">
  5. <img src="/images/caritas_logo.png" width="100%" style="padding:1em" />
  6. </div>
  7. <div class="row no-gutters align-items-center w-100">
  8. <table class="w-100">
  9. <tr>
  10. <td class="text-center">
  11. <p class="text-left">Hier kommt ein Informationstext über die App.</p>
  12. </td>
  13. </tr>
  14. <tr>
  15. <td class="text-center">
  16. <MatButton Raised="true" Class="w-100" @onclick="ShowCaritasWebpage">Mehr erfahren</MatButton>
  17. </td>
  18. </tr>
  19. <tr>
  20. <td>
  21. <MatCaption Style="font-family:Ubuntu">Version: 0.1.0</MatCaption>
  22. </td>
  23. </tr>
  24. </table>
  25. </div>
  26. <div class="row no-gutters align-items-end w-100">
  27. <table class="w-100">
  28. <tr>
  29. <td class="text-right">
  30. <MatCaption Style="font-family:Ubuntu">Entwickelt durch</MatCaption>
  31. </td>
  32. </tr>
  33. <tr>
  34. <td class="text-right">
  35. <img src="/images/integrate_logo.png" width="80%" />
  36. </td>
  37. </tr>
  38. <tr>
  39. <td class="text-right">
  40. <MatCaption Style="font-family:Ubuntu">Platz 10, Business Village Luzern</MatCaption>
  41. </td>
  42. </tr>
  43. <tr>
  44. <td class="text-right">
  45. <MatCaption Style="font-family:Ubuntu">CH-6039 Root D4</MatCaption>
  46. </td>
  47. </tr>
  48. </table>
  49. </div>
  50. </div>
  51. @code {
  52. private void ShowCaritasWebpage() {
  53. NavigationManager.NavigateTo("http://www.caritas.ch");
  54. }
  55. }