⚡ page creation or retrieve start [#28]
parent
d5e5550c54
commit
6532538da3
@ -0,0 +1,44 @@
|
||||
<section class="creation">
|
||||
<h1 i18n>
|
||||
Créer un sondage
|
||||
</h1>
|
||||
<p
|
||||
class="description"
|
||||
i18n
|
||||
>
|
||||
Planifiez des rendez-vous avec vos amis ou votre famille ou créez un sondage avec du texte, des images ou des
|
||||
liens… un sondage quoi !
|
||||
</p>
|
||||
<a
|
||||
[routerLink]="'home'"
|
||||
class="btn striked"
|
||||
>
|
||||
C'est parti
|
||||
</a>
|
||||
</section>
|
||||
<section class="recuperation">
|
||||
<h1 i18n>
|
||||
Où sont mes sondages ?
|
||||
</h1>
|
||||
<form action="/retrieve">
|
||||
<label
|
||||
class="description"
|
||||
for="email"
|
||||
i18n
|
||||
>
|
||||
Je cherche les sondages qui correspondent à mon mail :
|
||||
</label>
|
||||
<input
|
||||
type="email"
|
||||
name="email"
|
||||
id="email"
|
||||
placeholder="mon e-mail"
|
||||
/>
|
||||
<button
|
||||
class="btn btn-block"
|
||||
i18n
|
||||
>
|
||||
Retrouver mes sondages
|
||||
</button>
|
||||
</form>
|
||||
</section>
|
@ -0,0 +1,25 @@
|
||||
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { CreateOrRetrieveComponent } from './create-or-retrieve.component';
|
||||
|
||||
describe('CreateOrRetrieveComponent', () => {
|
||||
let component: CreateOrRetrieveComponent;
|
||||
let fixture: ComponentFixture<CreateOrRetrieveComponent>;
|
||||
|
||||
beforeEach(async(() => {
|
||||
TestBed.configureTestingModule({
|
||||
declarations: [ CreateOrRetrieveComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
}));
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(CreateOrRetrieveComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
@ -0,0 +1,15 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'framadate-create-or-retrieve',
|
||||
templateUrl: './create-or-retrieve.component.html',
|
||||
styleUrls: ['./create-or-retrieve.component.scss']
|
||||
})
|
||||
export class CreateOrRetrieveComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit() {
|
||||
}
|
||||
|
||||
}
|
@ -1,43 +1,56 @@
|
||||
<nav class="choices">
|
||||
<a
|
||||
|
||||
[routerLink]="'/step/creation'"
|
||||
>
|
||||
Création
|
||||
</a>
|
||||
<a
|
||||
|
||||
[routerLink]="'/step/date'">
|
||||
[routerLink]="'/step/date'"
|
||||
>
|
||||
Les Dates
|
||||
</a>
|
||||
<a
|
||||
|
||||
[routerLink]="'/step/answers'">
|
||||
[routerLink]="'/step/answers'"
|
||||
>
|
||||
Réponses
|
||||
</a>
|
||||
<a
|
||||
|
||||
[routerLink]="'/step/visibility'">
|
||||
[routerLink]="'/step/visibility'"
|
||||
>
|
||||
Visibilité
|
||||
</a>
|
||||
<a
|
||||
|
||||
[routerLink]="'/step/answers'">
|
||||
[routerLink]="'/step/base'"
|
||||
>
|
||||
Base
|
||||
</a>
|
||||
<a
|
||||
|
||||
[routerLink]="'/step/pictures'">
|
||||
[routerLink]="'/step/pictures'"
|
||||
>
|
||||
Images
|
||||
</a>
|
||||
<a
|
||||
|
||||
[routerLink]="'/step/resume'">
|
||||
[routerLink]="'/step/resume'"
|
||||
>
|
||||
Résumé
|
||||
</a>
|
||||
<a
|
||||
|
||||
[routerLink]="'/step/kind'">
|
||||
[routerLink]="'/step/kind'"
|
||||
>
|
||||
Page démo
|
||||
</a>
|
||||
<a
|
||||
|
||||
[routerLink]="'/home'">
|
||||
[routerLink]="'/home'"
|
||||
>
|
||||
Accueil
|
||||
</a>
|
||||
</nav>
|
||||
|
Loading…
Reference in new issue