File tree 2 files changed +38
-0
lines changed
src/app/create-course/create-course-step-3
2 files changed +38
-0
lines changed Original file line number Diff line number Diff line change
1
+
2
+ < h3 > Add Course Lessons:</ h3 >
3
+
4
+ < div class ="add-lessons-form " [formGroup] ="form ">
5
+
6
+ < div class ="lesson-form-row ">
7
+
8
+ < mat-form-field appearance ="fill ">
9
+
10
+ < input matInput placeholder ="Lesson title ">
11
+
12
+ </ mat-form-field >
13
+
14
+ < mat-form-field appearance ="fill ">
15
+
16
+ < mat-select placeholder ="Lesson level ">
17
+ < mat-option value ="beginner "> Beginner</ mat-option >
18
+ < mat-option value ="intermediate "> Intermediate</ mat-option >
19
+ < mat-option value ="advanced "> Advanced</ mat-option >
20
+ </ mat-select >
21
+
22
+ </ mat-form-field >
23
+
24
+ < mat-icon class ="delete-btn "> delete_forever</ mat-icon >
25
+
26
+ </ div >
27
+
28
+ < button mat-mini-fab >
29
+ < mat-icon class ="add-course-btn "> add</ mat-icon >
30
+ </ button >
31
+
32
+ </ div >
Original file line number Diff line number Diff line change 9
9
10
10
.lesson-form-row {
11
11
display : flex ;
12
+ align-items :center ;
12
13
13
14
mat-form-field {
14
15
margin-right : 10px ;
15
16
}
16
17
}
18
+
19
+ .delete-btn {
20
+ cursor :pointer ;
21
+
22
+ }
You can’t perform that action at this time.
0 commit comments