mirror of
https://github.com/yummy4friends/y4f.git
synced 2025-01-02 16:47:09 +01:00
818fe95ca1
* Kontoverwaltung * Kontoverwaltung Finish * Kontoverwaltung Button not finished * Kontoverwaltung Button not finished * Kontoverwaltung fertig. * Kontoverwaltung final finish * Erster Entwurf fertig * Finish Bestellabschluss * Final Final FInisch
33 lines
735 B
Plaintext
33 lines
735 B
Plaintext
@page "/Kontoverwaltung"
|
|
@layout MainLayout
|
|
|
|
<h3>Wichtige Informationen</h3> <br>
|
|
|
|
|
|
|
|
<div class="container mt-auto">
|
|
<h4>AccountID: #1234</h4>
|
|
<h4>Ihr QR-Code: </h4>
|
|
<h5>7392759231</h5>
|
|
<img src="assets/K-QR.png" class="img" title="logo image">
|
|
|
|
<p>Ihr Konto wird 30 Tage nach der Deaktivierung unwiderruflich gelöscht.</p>
|
|
<button class="btn" type="button" onclick="@ChangeButton" id="button1">@button1</button>
|
|
|
|
</div>
|
|
|
|
<br><br>
|
|
|
|
@code {
|
|
bool changeButtonBool { get; set; } = true;
|
|
|
|
string button1 => changeButtonBool ? "Konto deaktivieren" : "Konto aktivieren";
|
|
|
|
void ChangeButton()
|
|
{
|
|
//TODO Datenbankaktualisierung
|
|
changeButtonBool = !changeButtonBool;
|
|
}
|
|
}
|
|
|