Add logic to Login

This commit is contained in:
Bálint Bokros
2018-01-11 16:11:40 +01:00
parent fd7d3b83d6
commit ffd8360fe2
4 changed files with 49 additions and 5 deletions

View File

@ -1,3 +1,5 @@
import { HttpClientModule } from '@angular/common/http';
import { FormsModule } from '@angular/forms';
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
@ -25,6 +27,8 @@ import { WebSocketService } from './websocket.service';
],
imports: [
BrowserModule,
FormsModule,
HttpClientModule,
NgbModule.forRoot(),
AceEditorModule,
],
@ -32,6 +36,8 @@ import { WebSocketService } from './websocket.service';
MarkdownService,
WebSocketService
],
bootstrap: [AppComponent]
bootstrap: [
AppComponent
]
})
export class AppModule { }