This repository has been archived on 2026-01-08. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
frontend/src/app/login/login.component.html
T
2023-10-15 20:03:11 +02:00

22 lines
939 B
HTML

<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>