source: Sources/frontend/src/app/all-courses/all-courses.component.html@ 8423429

Last change on this file since 8423429 was 8423429, checked in by AngelNasev <angel.nasev@…>, 15 months ago

Add backend and frontend projects

  • Property mode set to 100644
File size: 550 bytes
Line 
1<div class="parent-container">
2 <h1>Сите курсеви</h1>
3 <form class="example-form">
4 <div class="list">
5 <div *ngFor="let c of courses">
6 <input type="checkbox" name="{{c.name}}"
7 (change)="onChange({event : $event, id : {id : c.id}})"
8 [checked]="checked({id : {id : c.id}})">
9 <label>
10 <p class="card">
11 Курс: {{c.name}}
12 </p>
13 </label>
14 </div>
15 </div>
16 <button (click)="submit()" type="button"><b>Submit</b></button>
17 </form>
18</div>
Note: See TracBrowser for help on using the repository browser.