Erste Realisierung

This commit is contained in:
zha19115 2023-05-19 13:29:54 +02:00
parent 8663be0d5d
commit 1c089f1ac1
3 changed files with 32 additions and 1 deletions

View File

@ -13,7 +13,7 @@
<ul class="navbar-nav">
<li class="nav-item">
<NavLink class="nav-link" href="Admin">
<NavLink class="nav-link" href="RegistrierungA">
Admin
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-person-fill" viewBox="0 0 16 16">
<path d="M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z" />

View File

@ -0,0 +1,18 @@
@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>
<input type="text" class="form-control" id="name" name="name">
<p>Passwort:</p>
<input type="text" class="form-control" id="password" name="password">
<form id="button" action="Bestelluebersicht">
<input type="submit" value="Login" class="btn">
</form>
</div>
@code {
}

View File

@ -0,0 +1,13 @@
p {
color: grey;
margin-bottom:0px;
margin-top: 15px;
}
form {
margin-top: 20px;
}