From abd652b9440ef84aed9f9d784d20d916d53897bc Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Mon, 20 Sep 2021 20:36:27 +0200 Subject: [PATCH] Pagina Contacts --- MP.Land/Pages/About.razor | 6 +-- MP.Land/Pages/Contacts.razor | 86 ++++++++++++++++++++++++++++++++++++ 2 files changed, 88 insertions(+), 4 deletions(-) create mode 100644 MP.Land/Pages/Contacts.razor diff --git a/MP.Land/Pages/About.razor b/MP.Land/Pages/About.razor index 3d26a90c..b0593084 100644 --- a/MP.Land/Pages/About.razor +++ b/MP.Land/Pages/About.razor @@ -4,9 +4,7 @@ @inject MessageService AppMService
-
-
-
+

@Titolo

@@ -14,7 +12,7 @@
- +
diff --git a/MP.Land/Pages/Contacts.razor b/MP.Land/Pages/Contacts.razor new file mode 100644 index 00000000..7a811d88 --- /dev/null +++ b/MP.Land/Pages/Contacts.razor @@ -0,0 +1,86 @@ +@page "/Contacts" +@using MP.Land.Data + +@inject MessageService AppMService + +
+
+
+
+
+
+
+

@Titolo

+
+ +
+
+
+
+
+ +
+
+
+
+

@Messaggio

+ +
+
+

Sede Operativa

+
+ EgalWare s.r.l.
+ via Nazionale, 93
+ 24068 Seriate - BG
+ P: + 035.290178
+ P: + 035.460560 +
+
+
+

Sede Legale

+
+ EgalWare s.r.l.
+ via Nazionale, 93
+ 24068 Seriate - BG
+
+ VAT:03985390164 +
+
+
+

Supporto

+
+ Web:
+ Accedi al supporto dal nostro sito web
+
+ Email:
+ Scrivi un email a info at egalware.com +
+
+
+
+
+
+
+ +@code { + + protected string Titolo = ""; + protected string Messaggio = ""; + + protected override void OnInitialized() + { + Titolo = "Mapo MES"; + Messaggio = "I nostri contattatti e siti di supporto"; + AppMService.ShowSearch = false; + AppMService.PageName = "Contacts"; + AppMService.PageIcon = "fas fa-envelope pr-2"; + } +} \ No newline at end of file