You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <div class="container">
- <figure class="logo">
- <img src="./../../../assets/icons/logo.svg" alt="bizfile plus logo">
- </figure>
-
- <section class="form">
- <h2> Login </h2>
-
- <app-generic-input
- type="email"
- placeholder="e.g. johndoe@mail.com"
- label="Email ID"
- [value]="email"
- (onChange)="updateEmail($event)"
- ></app-generic-input>
-
- <app-generic-input
- type="password"
- placeholder="Do not share password with others"
- label="Password"
- ></app-generic-input>
-
- <div class="other-actions">
- <label for="remember-me"> <input id="remember-me" type="checkbox"> Remember me </label>
- <a href="#"> Forgot Password </a>
- </div>
-
- <button class="form-button" [routerLink]="['/tabs']">
- Login
- </button>
-
- <div class="other-actions">
- <span> <a href="#">Create Account</a> if not registered </span>
- </div>
- </section>
-
- </div>
|