diff --git a/src/app/app.component.ts b/src/app/app.component.ts
index 5d5cabc3..a270d6d0 100644
--- a/src/app/app.component.ts
+++ b/src/app/app.component.ts
@@ -67,6 +67,7 @@ export class AppComponent {
{ name: 'blockquotes', link: 'bootstrap-prototype/blockquotes' },
{ name: 'breadcrumb', link: 'bootstrap-prototype/breadcrumb' },
{ name: 'buttons', link: 'bootstrap-prototype/buttons' },
+ { name: 'carousel', link: 'bootstrap-prototype/carousel'},
{ name: 'collapse', link: 'bootstrap-prototype/collapse' },
{ name: 'dropdowns', link: 'bootstrap-prototype/dropdowns' },
{ name: 'forms', link: 'bootstrap-prototype/forms' },
diff --git a/src/app/modules/application/example-bootstrap-prototype/00-main/items.ts b/src/app/modules/application/example-bootstrap-prototype/00-main/items.ts
index 2fd7abfb..13b31df0 100644
--- a/src/app/modules/application/example-bootstrap-prototype/00-main/items.ts
+++ b/src/app/modules/application/example-bootstrap-prototype/00-main/items.ts
@@ -16,4 +16,5 @@ export const ITEMS: any[] =
{ id: 14, name: 'Spinners', link: 'spinners' },
{ id: 15, name: 'Toasts', link: 'toasts' },
{ id: 16, name: 'Tooltips', link: 'tooltips' },
+ { id: 17, name: 'Carousel', link: 'carousel' },
];
diff --git a/src/app/modules/application/example-bootstrap-prototype/alerts/items.component.html b/src/app/modules/application/example-bootstrap-prototype/alerts/items.component.html
index 1776c487..72088174 100644
--- a/src/app/modules/application/example-bootstrap-prototype/alerts/items.component.html
+++ b/src/app/modules/application/example-bootstrap-prototype/alerts/items.component.html
@@ -10,6 +10,9 @@
Alerts
A simple info alert—check it out!
+
+ A simple danger alert—check it out!
+
A simple primary alert with
an example link . Give it a click if you like.
diff --git a/src/app/modules/application/example-bootstrap-prototype/carousel/carousel.component.css b/src/app/modules/application/example-bootstrap-prototype/carousel/carousel.component.css
new file mode 100644
index 00000000..e69de29b
diff --git a/src/app/modules/application/example-bootstrap-prototype/carousel/carousel.component.html b/src/app/modules/application/example-bootstrap-prototype/carousel/carousel.component.html
new file mode 100644
index 00000000..b6318462
--- /dev/null
+++ b/src/app/modules/application/example-bootstrap-prototype/carousel/carousel.component.html
@@ -0,0 +1,26 @@
+
\ No newline at end of file
diff --git a/src/app/modules/application/example-bootstrap-prototype/carousel/carousel.component.ts b/src/app/modules/application/example-bootstrap-prototype/carousel/carousel.component.ts
new file mode 100644
index 00000000..82db8a05
--- /dev/null
+++ b/src/app/modules/application/example-bootstrap-prototype/carousel/carousel.component.ts
@@ -0,0 +1,15 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+ selector: 'app-carousel',
+ templateUrl: './carousel.component.html',
+ styleUrls: ['./carousel.component.css']
+})
+export class CarouselComponent implements OnInit {
+
+ constructor() { }
+
+ ngOnInit(): void {
+ }
+
+}
diff --git a/src/app/modules/application/example-bootstrap-prototype/example-bootstrap-prototype-routing.module.ts b/src/app/modules/application/example-bootstrap-prototype/example-bootstrap-prototype-routing.module.ts
index 9b8c2149..ccaa7792 100644
--- a/src/app/modules/application/example-bootstrap-prototype/example-bootstrap-prototype-routing.module.ts
+++ b/src/app/modules/application/example-bootstrap-prototype/example-bootstrap-prototype-routing.module.ts
@@ -7,6 +7,7 @@ import { AlertsComponent } from './alerts/items.component';
import { BadgeComponent } from './badge/items.component';
import { BlockquotesComponent } from './blockquotes/items.component';
import { BreadcrumbComponent } from './breadcrumb/items.component';
+import { CarouselComponent } from './carousel/carousel.component';
import { ButtonsComponent } from './buttons/items.component';
import { TooltipsComponent } from './tooltips/items.component';
import { CollapseComponent } from './collapse/items.component';
@@ -32,6 +33,7 @@ const routes: Routes = [
{ path: 'badge', component: BadgeComponent },
{ path: 'blockquotes', component: BlockquotesComponent },
{ path: 'breadcrumb', component: BreadcrumbComponent },
+ { path: 'carousel', component: CarouselComponent },
{ path: 'buttons', component: ButtonsComponent },
{ path: 'tooltips', component: TooltipsComponent },
{ path: 'collapse', component: CollapseComponent },
diff --git a/src/app/modules/application/example-bootstrap-prototype/example-bootstrap-prototype.module.ts b/src/app/modules/application/example-bootstrap-prototype/example-bootstrap-prototype.module.ts
index 3b1141d3..aaeffff8 100644
--- a/src/app/modules/application/example-bootstrap-prototype/example-bootstrap-prototype.module.ts
+++ b/src/app/modules/application/example-bootstrap-prototype/example-bootstrap-prototype.module.ts
@@ -3,10 +3,12 @@ import { CommonModule } from '@angular/common';
import { ExampleBootstrapPrototypeRoutingModule } from './example-bootstrap-prototype-routing.module';
import { ExampleBootstrapPrototypeComponent } from './example-bootstrap-prototype.component';
+import { CarouselComponent } from './carousel/carousel.component';
@NgModule({
declarations: [
ExampleBootstrapPrototypeComponent,
+ CarouselComponent,
],
exports: [
ExampleBootstrapPrototypeComponent,
diff --git a/src/app/modules/application/example-crud/components/search-bar/search-bar.component.html b/src/app/modules/application/example-crud/components/search-bar/search-bar.component.html
index 604eda5a..ee0375de 100644
--- a/src/app/modules/application/example-crud/components/search-bar/search-bar.component.html
+++ b/src/app/modules/application/example-crud/components/search-bar/search-bar.component.html
@@ -5,7 +5,7 @@
diff --git a/src/app/modules/application/example-reactive-form/01-prototype/exercice.component.html b/src/app/modules/application/example-reactive-form/01-prototype/exercice.component.html
index 00338227..35551883 100644
--- a/src/app/modules/application/example-reactive-form/01-prototype/exercice.component.html
+++ b/src/app/modules/application/example-reactive-form/01-prototype/exercice.component.html
@@ -6,6 +6,10 @@
Name
+
+ Subname
+
+
Release Date