Skip to content
Snippets Groups Projects
Commit 6cb1d2a1 authored by Dante Aléo's avatar Dante Aléo :pouting_cat:
Browse files

created backend for register

parent 65e8a215
No related branches found
No related tags found
2 merge requests!44Login backend,!43Login backend
Showing
with 13 additions and 6 deletions
Subproject commit a77d3698e36e243624cbabed2f8d6c50455c2a87
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
...@@ -25,6 +25,10 @@ import { GraphsPageComponent } from './graphs-page/graphs-page.component'; ...@@ -25,6 +25,10 @@ import { GraphsPageComponent } from './graphs-page/graphs-page.component';
import { MapsPageComponent } from './maps-page/maps-page.component'; import { MapsPageComponent } from './maps-page/maps-page.component';
import { RegisterComponent } from './register/register.component'; import { RegisterComponent } from './register/register.component';
import { LoginComponent } from './login/login.component'; import { LoginComponent } from './login/login.component';
import { EventsComponent } from './events/events.component';
import { SpecialEventsComponent } from './special-events/special-events.component';
import { AuthService } from './auth.service';
...@@ -34,7 +38,11 @@ const routes: Routes = [ ...@@ -34,7 +38,11 @@ const routes: Routes = [
{ path: 'graficos', component: GraphsPageComponent }, { path: 'graficos', component: GraphsPageComponent },
{ path: 'mapas', component: MapsPageComponent }, { path: 'mapas', component: MapsPageComponent },
{ path: 'login', component: LoginComponent }, { path: 'login', component: LoginComponent },
{ path: 'register', component: RegisterComponent } { path: 'register', component: RegisterComponent },
{ path: 'events', component: EventsComponent },
{ path: 'special', component: SpecialEventsComponent }
]; ];
......
<!-- This file is part of the project Pinsis-Portal. <!-- This file is part of the project Pinsis-Portal.
Copyright (C),2018, by C3SL(Centro de Computação Científica e Copyright (C),2018, by C3SL(Centro de Computação Científica e
Software Live) Software Live)
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
......
/*This file is part of the project Pinsis-Portal. /*This file is part of the project Pinsis-Portal.
Copyright (C),2018, by C3SL(Centro de Computação Científica e Copyright (C),2018, by C3SL(Centro de Computação Científica e
Software Live) Software Live)
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
...@@ -20,6 +20,6 @@ ...@@ -20,6 +20,6 @@
.page-content { .page-content {
padding: $spacing-l 0; padding: $spacing-l 0;
min-height: 550px; min-height: 550px;
background-color: $bg-default; background-color: $bg-default;
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment