diff --git a/Pages/Index.razor b/Pages/Index.razor index a435e7d..8ef66ac 100644 --- a/Pages/Index.razor +++ b/Pages/Index.razor @@ -4,12 +4,17 @@ Yummy4Friends - +

Herzlich Willkommen!

- - + +
+ +
+
- \ No newline at end of file + + + diff --git a/Shared/Footer.razor b/Shared/Footer.razor index 67efc3d..fcca73f 100644 --- a/Shared/Footer.razor +++ b/Shared/Footer.razor @@ -1,4 +1,4 @@ -*@ + @code { } diff --git a/Shared/Footer.razor.css b/Shared/Footer.razor.css index fc6a057..cbe854c 100644 --- a/Shared/Footer.razor.css +++ b/Shared/Footer.razor.css @@ -1,5 +1,5 @@ a { - color: grey; + color: black; text-decoration: none; } @@ -10,4 +10,17 @@ a:hover, a:focus { h6 { color: grey; -} \ No newline at end of file +} + + +.footer { + position: fixed; + left: 0; + bottom: 0; + width: 100%; + background-color: #89f9a5; + color: black; + text-align: center; + padding-top: 15px; + padding-bottom: 15px; +} diff --git a/Shared/Kontoverwaltung.razor b/Shared/Kontoverwaltung.razor new file mode 100644 index 0000000..09a17d8 --- /dev/null +++ b/Shared/Kontoverwaltung.razor @@ -0,0 +1,31 @@ +@page "/Kontoverwaltung" + +

Wichtige Informationen


+ + + +
+

AccountID: #1234

+

Ihr QR-Code:

+
7392759231
+ + +

Ihr Konto wird 30 Tage nach der Deaktivierung unwiderruflich gelöscht.

+ + +
+ +

+ +@code { + bool changeButtonBool { get; set; } = true; + + string button1 => changeButtonBool ? "Konto deaktivieren" : "Konto aktivieren"; + + void ChangeButton() + { + //TODO Datenbankaktualisierung + changeButtonBool = !changeButtonBool; + } +} + diff --git a/Shared/Kontoverwaltung.razor.css b/Shared/Kontoverwaltung.razor.css new file mode 100644 index 0000000..d421384 --- /dev/null +++ b/Shared/Kontoverwaltung.razor.css @@ -0,0 +1,22 @@ +body { + background-color: white; + +} + + +img { + width: 150px; + height: 150px; + padding: 0px; + margin: 0px; +} + +button { + background-color: #89f9a5; +} + + + + + + diff --git a/Shared/MainLayout.razor b/Shared/MainLayout.razor index 6a18f81..0ddc06f 100644 --- a/Shared/MainLayout.razor +++ b/Shared/MainLayout.razor @@ -1,13 +1,13 @@ @inherits LayoutComponentBase -
+
-
+ @Body -
+
diff --git a/Shared/Startseite.razor.css b/Shared/Startseite.razor.css new file mode 100644 index 0000000..9f8256f --- /dev/null +++ b/Shared/Startseite.razor.css @@ -0,0 +1,5 @@ +html, body { + /*background-color: #C7FFD5;*/ + padding: 0px; + margin: 0px; +} diff --git a/wwwroot/assets/K-QR.png b/wwwroot/assets/K-QR.png new file mode 100644 index 0000000..511a770 Binary files /dev/null and b/wwwroot/assets/K-QR.png differ diff --git a/wwwroot/css/Site.css b/wwwroot/css/Site.css index 1e9b5a2..e523872 100644 --- a/wwwroot/css/Site.css +++ b/wwwroot/css/Site.css @@ -1,9 +1,8 @@ -@import url('open-iconic/font/css/open-iconic-bootstrap.min.css'); +@import url('open-iconic/font/css/open-iconic-bootstrap.min.css'); html, body { margin: 0px; padding: 0px; - background-color: #C7FFD1; } #content { @@ -11,7 +10,7 @@ html, body { padding: 5%; margin-top: 1%; border-radius: 10px; - + position: center; } .img { @@ -20,6 +19,8 @@ html, body { margin: 10%; } -button { - box-shadow: 5px 5px #d3d3d3; -} \ No newline at end of file + +form { + text-align: center; +} + diff --git a/wwwroot/css/app.css b/wwwroot/css/app.css index 8034dcc..4649166 100644 --- a/wwwroot/css/app.css +++ b/wwwroot/css/app.css @@ -2,6 +2,7 @@ html, body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; + background-color: #C7FFD1; } h1:focus {