y4f/Shared/Registrierung/RegistrierungA.razor

23 lines
570 B
Plaintext
Raw Normal View History

2023-05-19 13:29:54 +02:00
@page "/RegistrierungA"
@layout Registrierung
<div class="container col-lg-5 col-md-9 col-sm-12 d-flex flex-column " id="content">
<p>Benutzername:</p>
2023-06-05 19:26:23 +02:00
<center>
2023-05-19 13:29:54 +02:00
<input type="text" class="form-control" id="name" name="name">
2023-06-05 19:26:23 +02:00
</center>
2023-05-19 13:29:54 +02:00
<p>Passwort:</p>
2023-06-05 19:26:23 +02:00
<center>
2023-05-19 13:29:54 +02:00
<input type="text" class="form-control" id="password" name="password">
2023-06-05 19:26:23 +02:00
</center>
<center>
<form id="button" action="Bestelluebersicht">
<input type="submit" value="Login" class="btn">
</form>
</center>
2023-05-19 13:29:54 +02:00
</div>
@code {
}