diff --git a/src/app/debugger/debugger.component.html b/src/app/debugger/debugger.component.html
new file mode 100644
index 00000000..1733f795
--- /dev/null
+++ b/src/app/debugger/debugger.component.html
@@ -0,0 +1,63 @@
+
+
+
+
+
+ infos de debug
+
+
+
+ -
+ étape actuelle {{config.step}} / {{config.stepMax}}
+
+ -
+ formulaire valide : {{formIsValid}}
+
+ -
+ type de formulaire: {{config.pollType}}
+
+ -
+ config:
+
+ {{config|json}}
+
+
+
+
+
+
+ Choix cornélien syncronisé:
+
+
+
+
+
+
diff --git a/src/app/debugger/debugger.component.scss b/src/app/debugger/debugger.component.scss
new file mode 100644
index 00000000..e69de29b
diff --git a/src/app/debugger/debugger.component.spec.ts b/src/app/debugger/debugger.component.spec.ts
new file mode 100644
index 00000000..1d643e98
--- /dev/null
+++ b/src/app/debugger/debugger.component.spec.ts
@@ -0,0 +1,25 @@
+import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { DebuggerComponent } from './debugger.component';
+
+describe('DebuggerComponent', () => {
+ let component: DebuggerComponent;
+ let fixture: ComponentFixture;
+
+ beforeEach(async(() => {
+ TestBed.configureTestingModule({
+ declarations: [ DebuggerComponent ]
+ })
+ .compileComponents();
+ }));
+
+ beforeEach(() => {
+ fixture = TestBed.createComponent(DebuggerComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
diff --git a/src/app/debugger/debugger.component.ts b/src/app/debugger/debugger.component.ts
new file mode 100644
index 00000000..7b84841a
--- /dev/null
+++ b/src/app/debugger/debugger.component.ts
@@ -0,0 +1,26 @@
+import {Component, OnInit} from '@angular/core';
+import {ConfigService} from '../config.service';
+
+@Component({
+ selector: 'framadate-debugger',
+ templateUrl: './debugger.component.html',
+ styleUrls: ['./debugger.component.scss']
+})
+export class DebuggerComponent implements OnInit {
+ private formIsValid = true;
+
+ constructor(private config: ConfigService) {
+ }
+
+ ngOnInit() {
+ }
+
+ selectOption(key: string, val: any) {
+ if (!this.config[key]) {
+ return false;
+ }
+ this.config[key] = val;
+
+ return true;
+ }
+}