mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-01-30 05:05:18 +01:00
feat(pages): register page
This commit is contained in:
parent
c10f864c59
commit
919cbf5d2d
8 changed files with 215 additions and 143 deletions
18
src/app/pages/register/register.component.ts
Normal file
18
src/app/pages/register/register.component.ts
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
import {Component, ViewEncapsulation} from '@angular/core';
|
||||
|
||||
|
||||
@Component({
|
||||
selector: 'login',
|
||||
encapsulation: ViewEncapsulation.None,
|
||||
directives: [],
|
||||
styles: [require('./register.scss')],
|
||||
template: require('./register.html'),
|
||||
})
|
||||
export class Register {
|
||||
|
||||
constructor() {
|
||||
}
|
||||
|
||||
ngOnInit() {
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue