diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 6c18162c..0f3c136c 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -24,6 +24,10 @@ import { CalendarComponent } from './calendar/calendar.component'; import { registerLocaleData } from '@angular/common'; import localeFr from '@angular/common/locales/fr'; +import { VotingSummaryComponent } from './pages/voting-summary/voting-summary.component'; +import { VotingGraphComponent } from './pages/voting-graph/voting-graph.component'; +import { VotingChoiceComponent } from './pages/voting-choice/voting-choice.component'; +import { PasswordComponent } from './pages/password/password.component'; registerLocaleData(localeFr, 'fr'); @@ -44,6 +48,10 @@ registerLocaleData(localeFr, 'fr'); EndConfirmationComponent, CreateOrRetrieveComponent, CalendarComponent, + VotingSummaryComponent, + VotingGraphComponent, + VotingChoiceComponent, + PasswordComponent, ], imports: [ diff --git a/src/app/pages/password/password.component.html b/src/app/pages/password/password.component.html new file mode 100644 index 00000000..68d7a39b --- /dev/null +++ b/src/app/pages/password/password.component.html @@ -0,0 +1 @@ +

password works!

diff --git a/src/app/pages/password/password.component.scss b/src/app/pages/password/password.component.scss new file mode 100644 index 00000000..e69de29b diff --git a/src/app/pages/password/password.component.spec.ts b/src/app/pages/password/password.component.spec.ts new file mode 100644 index 00000000..49227f21 --- /dev/null +++ b/src/app/pages/password/password.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { PasswordComponent } from './password.component'; + +describe('PasswordComponent', () => { + let component: PasswordComponent; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ PasswordComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(PasswordComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/pages/password/password.component.ts b/src/app/pages/password/password.component.ts new file mode 100644 index 00000000..4b02a1e5 --- /dev/null +++ b/src/app/pages/password/password.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'framadate-password', + templateUrl: './password.component.html', + styleUrls: ['./password.component.scss'] +}) +export class PasswordComponent implements OnInit { + + constructor() { } + + ngOnInit() { + } + +} diff --git a/src/app/pages/voting-choice/voting-choice.component.html b/src/app/pages/voting-choice/voting-choice.component.html new file mode 100644 index 00000000..c16a56f0 --- /dev/null +++ b/src/app/pages/voting-choice/voting-choice.component.html @@ -0,0 +1 @@ +

voting-choice works!

diff --git a/src/app/pages/voting-choice/voting-choice.component.scss b/src/app/pages/voting-choice/voting-choice.component.scss new file mode 100644 index 00000000..e69de29b diff --git a/src/app/pages/voting-choice/voting-choice.component.spec.ts b/src/app/pages/voting-choice/voting-choice.component.spec.ts new file mode 100644 index 00000000..ddff967a --- /dev/null +++ b/src/app/pages/voting-choice/voting-choice.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { VotingChoiceComponent } from './voting-choice.component'; + +describe('VotingChoiceComponent', () => { + let component: VotingChoiceComponent; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ VotingChoiceComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(VotingChoiceComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/pages/voting-choice/voting-choice.component.ts b/src/app/pages/voting-choice/voting-choice.component.ts new file mode 100644 index 00000000..750b2efb --- /dev/null +++ b/src/app/pages/voting-choice/voting-choice.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'framadate-voting-choice', + templateUrl: './voting-choice.component.html', + styleUrls: ['./voting-choice.component.scss'] +}) +export class VotingChoiceComponent implements OnInit { + + constructor() { } + + ngOnInit() { + } + +} diff --git a/src/app/pages/voting-graph/voting-graph.component.html b/src/app/pages/voting-graph/voting-graph.component.html new file mode 100644 index 00000000..c8e9ef0a --- /dev/null +++ b/src/app/pages/voting-graph/voting-graph.component.html @@ -0,0 +1 @@ +

voting-graph works!

diff --git a/src/app/pages/voting-graph/voting-graph.component.scss b/src/app/pages/voting-graph/voting-graph.component.scss new file mode 100644 index 00000000..e69de29b diff --git a/src/app/pages/voting-graph/voting-graph.component.spec.ts b/src/app/pages/voting-graph/voting-graph.component.spec.ts new file mode 100644 index 00000000..b7c6b312 --- /dev/null +++ b/src/app/pages/voting-graph/voting-graph.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { VotingGraphComponent } from './voting-graph.component'; + +describe('VotingGraphComponent', () => { + let component: VotingGraphComponent; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ VotingGraphComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(VotingGraphComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/pages/voting-graph/voting-graph.component.ts b/src/app/pages/voting-graph/voting-graph.component.ts new file mode 100644 index 00000000..0d0e6bd1 --- /dev/null +++ b/src/app/pages/voting-graph/voting-graph.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'framadate-voting-graph', + templateUrl: './voting-graph.component.html', + styleUrls: ['./voting-graph.component.scss'] +}) +export class VotingGraphComponent implements OnInit { + + constructor() { } + + ngOnInit() { + } + +} diff --git a/src/app/pages/voting-summary/voting-summary.component.html b/src/app/pages/voting-summary/voting-summary.component.html new file mode 100644 index 00000000..f17eacb3 --- /dev/null +++ b/src/app/pages/voting-summary/voting-summary.component.html @@ -0,0 +1 @@ +

voting-summary works!

diff --git a/src/app/pages/voting-summary/voting-summary.component.scss b/src/app/pages/voting-summary/voting-summary.component.scss new file mode 100644 index 00000000..e69de29b diff --git a/src/app/pages/voting-summary/voting-summary.component.spec.ts b/src/app/pages/voting-summary/voting-summary.component.spec.ts new file mode 100644 index 00000000..e4d956d9 --- /dev/null +++ b/src/app/pages/voting-summary/voting-summary.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { VotingSummaryComponent } from './voting-summary.component'; + +describe('VotingSummaryComponent', () => { + let component: VotingSummaryComponent; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ VotingSummaryComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(VotingSummaryComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/pages/voting-summary/voting-summary.component.ts b/src/app/pages/voting-summary/voting-summary.component.ts new file mode 100644 index 00000000..92f288b8 --- /dev/null +++ b/src/app/pages/voting-summary/voting-summary.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'framadate-voting-summary', + templateUrl: './voting-summary.component.html', + styleUrls: ['./voting-summary.component.scss'] +}) +export class VotingSummaryComponent implements OnInit { + + constructor() { } + + ngOnInit() { + } + +}