Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Commits on Source (2)
(fix): m-login-box's background colour should be transparent
· 6e846718
Marcelo Rivera
authored
Aug 30, 2019
6e846718
(feat): forgot password component
· 57789ecb
Marcelo Rivera
authored
Aug 30, 2019
57789ecb
Hide whitespace changes
Inline
Side-by-side
src/app/modules/auth/auth.module.ts
View file @
57789ecb
...
...
@@ -41,6 +41,9 @@ const routes: Routes = [
RegisterComponent
,
ForgotPasswordComponent
,
],
exports
:
[
ForgotPasswordComponent
,
],
entryComponents
:
[
LoginComponent
,
LogoutComponent
,
...
...
src/app/modules/pro/channel/login/login.component.scss
View file @
57789ecb
...
...
@@ -152,7 +152,7 @@ m-pro--channel-login {
minds-form-register
,
minds-form-login
{
.mdl-card
{
.mdl-card
.m-login-box
{
background
:
transparent
;
padding
:
0
;
}
...
...
src/app/modules/pro/pro.module.ts
View file @
57789ecb
...
...
@@ -29,6 +29,8 @@ import { MediaEditComponent } from "../media/edit/edit.component";
import
{
BlogViewInfinite
}
from
"
../blogs/view/infinite
"
;
import
{
BlogEdit
}
from
"
../blogs/edit/edit
"
;
import
{
CanDeactivateGuardService
}
from
"
../../services/can-deactivate-guard
"
;
import
{
ForgotPasswordComponent
}
from
"
../auth/forgot-password/forgot-password.component
"
;
import
{
AuthModule
}
from
"
../auth/auth.module
"
;
import
{
ProHamburgerMenu
}
from
'
./channel/hamburger-menu/hamburger-menu.component
'
;
const
routes
:
Routes
=
[
...
...
@@ -55,6 +57,10 @@ const routes: Routes = [
path
:
'
login
'
,
component
:
ProChannelLoginComponent
,
},
{
path
:
'
forgot-password
'
,
component
:
ForgotPasswordComponent
,
},
{
path
:
'
:type
'
,
component
:
ProChannelListComponent
,
...
...
@@ -78,6 +84,10 @@ export const STANDALONE_ROUTES = [
path
:
'
login
'
,
component
:
ProChannelLoginComponent
,
},
{
path
:
'
forgot-password
'
,
component
:
ForgotPasswordComponent
,
},
{
path
:
'
:type
'
,
component
:
ProChannelListComponent
,
...
...
@@ -128,6 +138,7 @@ export const STANDALONE_ROUTES = [
LegacyModule
,
WireModule
,
VideoModule
,
AuthModule
,
],
providers
:
[
ProService
],
declarations
:
[
...
...