source: bus-n-go-pavel-216049/bus-n-go-frontend/src/app/components/register/register.component.html@ dedbf60

Last change on this file since dedbf60 was baf4cc4, checked in by ppaunovski <paunovskipavel@…>, 4 weeks ago

split group project and individual project into two separate folders

  • Property mode set to 100644
File size: 1.2 KB
Line 
1
2<div class="w-full h-full flex justify-center items-center">
3 <form [formGroup]="form" class="flex flex-col w-1/2" (ngSubmit)="onSubmit()">
4
5 <mat-form-field appearance="outline">
6 <label>Full Name</label>
7 <input matInput formControlName="name" placeholder="John Doe">
8 </mat-form-field>
9
10 <mat-form-field appearance="outline">
11 <label>Email</label>
12 <input matInput formControlName="email" placeholder="john.doe@example.com">
13 </mat-form-field>
14
15 <mat-form-field appearance="outline">
16 <label>Password</label>
17 <input matInput type="password" formControlName="password">
18 </mat-form-field>
19
20 <mat-form-field appearance="outline">
21 <label>Confirm Password</label>
22 <input matInput type="password" formControlName="confirmPassword">
23 </mat-form-field>
24
25 <mat-form-field appearance="outline">
26 <label>Address</label>
27 <input matInput formControlName="address" placeholder="str. Dame Gruev 12">
28 </mat-form-field>
29
30 <mat-form-field appearance="outline">
31 <label>Phone</label>
32 <input matInput formControlName="phoneNumber" placeholder="+3897xxxxxxx">
33 </mat-form-field>
34
35 <button mat-flat-button>Register</button>
36</form>
37</div>
Note: See TracBrowser for help on using the repository browser.