Skip to content
Next
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Minds Frontend
Project
Project
Details
Activity
Releases
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
891
Issues
891
List
Boards
Labels
Service Desk
Milestones
Merge Requests
49
Merge Requests
49
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Security & Compliance
Security & Compliance
Dependency List
Packages
Packages
List
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Compare Revisions
7d91ba71036ee1be690a27e78907d72d83fa14fa...57789ecb243736e097ecc3243faad9087d6cf66f
Source
57789ecb243736e097ecc3243faad9087d6cf66f
Select Git revision
...
Target
7d91ba71036ee1be690a27e78907d72d83fa14fa
Select Git revision
Compare
Commits (2)
(fix): m-login-box's background colour should be transparent
· 6e846718
Marcelo Rivera
authored
1 hour ago
6e846718
(feat): forgot password component
· 57789ecb
Marcelo Rivera
authored
1 hour ago
57789ecb
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
1 deletion
+15
-1
auth.module.ts
src/app/modules/auth/auth.module.ts
+3
-0
login.component.scss
src/app/modules/pro/channel/login/login.component.scss
+1
-1
pro.module.ts
src/app/modules/pro/pro.module.ts
+11
-0
No files found.
src/app/modules/auth/auth.module.ts
View file @
57789ecb
...
...
@@ -41,6 +41,9 @@ const routes: Routes = [
RegisterComponent
,
ForgotPasswordComponent
,
],
exports
:
[
ForgotPasswordComponent
,
],
entryComponents
:
[
LoginComponent
,
LogoutComponent
,
...
...
This diff is collapsed.
Click to expand it.
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
;
}
...
...
This diff is collapsed.
Click to expand it.
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
:
[
...
...
This diff is collapsed.
Click to expand it.