initial commit

This commit is contained in:
2023-10-15 20:03:11 +02:00
commit dc797d78ed
176 changed files with 23002 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
<div class="form-signin">
<form (ngSubmit)="onSubmit()" style="margin-top: 20%;">
<h1 class="h3 mb-3 fw-normal" style="text-align: center;">Please sign in</h1>
<div class="form-floating">
<input type="email" class="form-control" id="floatingInput" placeholder="name@example.com" [(ngModel)]="logEmail" name="logEmail">
<label for="floatingInput">Email address</label>
</div>
<div class="form-floating">
<input type="password" class="form-control" id="floatingPassword" placeholder="Password" [(ngModel)]="logPassword" name="logPassword">
<label for="floatingPassword">Password</label>
</div>
<div class="checkbox mb-3">
<label>
<input type="checkbox" [(ngModel)]="remember" value="remember-me"> Remember me
</label>
</div>
<button class="w-100 btn btn-lg btn-primary" type="submit">Sign in</button>
<a href="/register">no account yet?</a>
</form>
</div>