commencement des pages 'connexion' et 'register'
This commit is contained in:
parent
96285c0403
commit
5f4ecfc7b3
10 changed files with 6904 additions and 6235 deletions
1
src/app/user/page-search/page-search.component.html
Normal file
1
src/app/user/page-search/page-search.component.html
Normal file
|
|
@ -0,0 +1 @@
|
|||
<p>page-search works!</p>
|
||||
0
src/app/user/page-search/page-search.component.scss
Normal file
0
src/app/user/page-search/page-search.component.scss
Normal file
25
src/app/user/page-search/page-search.component.spec.ts
Normal file
25
src/app/user/page-search/page-search.component.spec.ts
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { PageSearchComponent } from './page-search.component';
|
||||
|
||||
describe('PageSearchComponent', () => {
|
||||
let component: PageSearchComponent;
|
||||
let fixture: ComponentFixture<PageSearchComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [ PageSearchComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(PageSearchComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
15
src/app/user/page-search/page-search.component.ts
Normal file
15
src/app/user/page-search/page-search.component.ts
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-page-search',
|
||||
templateUrl: './page-search.component.html',
|
||||
styleUrls: ['./page-search.component.scss']
|
||||
})
|
||||
export class PageSearchComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit(): void {
|
||||
}
|
||||
|
||||
}
|
||||
Reference in a new issue