- - - - Iniciar sesión - - + + Iniciar sesión + - - - Email - + + + Email + - - Contraseña - - - - Olvidé mi contraseña - - - - - - - Ingresar - - Crear cuenta - - - - - - - - - - - - - - - - - - Continuar con Google - - - + + Contraseña + + + + Olvidé mi contraseña + - + + + Ingresar + + Crear cuenta + + + + + + + + + + + + + + + + + + Continuar con Google + diff --git a/src/app/features/store/pages/login-page/login-page.component.scss b/src/app/features/store/pages/login-page/login-page.component.scss index e69de29..525f35d 100644 --- a/src/app/features/store/pages/login-page/login-page.component.scss +++ b/src/app/features/store/pages/login-page/login-page.component.scss @@ -0,0 +1,47 @@ +:host { + display: block; +} + +.login-page__header { + margin-bottom: 1.5rem; +} + +.login-page__title { + margin: 0; + color: #666666; + font-size: 17px; + font-weight: 700; + text-transform: uppercase; +} + +.login-page__form { + width: 100%; +} + +.login-page__forgot-password { + color: #a0a0a0; + font-size: 12px; + font-weight: 325; +} + +.login-page__create-account { + min-height: 40px; + font-weight: 700; +} + +.login-page__divider { + margin-block: 1.5rem; +} + +.login-page__divider-line { + max-width: 18rem; + height: 1px; + background-color: #d9d9d9; +} + +.login-page__divider-dot { + width: 16px; + height: 16px; + border-color: #d9d9d9 !important; + background-color: #ffffff; +} diff --git a/src/app/features/store/store.routes.ts b/src/app/features/store/store.routes.ts index e99f280..f3ee026 100644 --- a/src/app/features/store/store.routes.ts +++ b/src/app/features/store/store.routes.ts @@ -1,5 +1,6 @@ import { Routes } from '@angular/router'; +import { AuthLayoutComponent } from '../../core/layout/auth-layout/auth-layout.component'; import { StoreLayoutComponent } from '../../core/layout/store-layout/store-layout.component'; import { LoginPageComponent } from './pages/login-page/login-page.component'; import { StoreHomePageComponent } from './pages/store-home-page/store-home-page.component'; @@ -15,7 +16,13 @@ export const routes: Routes = [ }, { path: 'login', - component: LoginPageComponent + component: AuthLayoutComponent, + children: [ + { + path: '', + component: LoginPageComponent + } + ] }, { path: 'producto/:id',