├── .browserslistrc ├── .editorconfig ├── .eslintrc.json ├── .github ├── CONTRIBUTING-ES.md ├── README-ES.md └── images │ ├── logo-01.png │ └── logo-02.png ├── .gitignore ├── .prettierrc.json ├── .vscode ├── extensions.json └── settings.json ├── CONTRIBUTING.md ├── README.md ├── angular.json ├── capacitor.config.ts ├── ionic.config.json ├── karma.conf.js ├── ngsw-config.json ├── package.json ├── src ├── app │ ├── CORE │ │ ├── Auth │ │ │ ├── Auth.function.ts │ │ │ ├── Interceptors │ │ │ │ └── token-interceptor.service.ts │ │ │ ├── guards │ │ │ │ ├── auth.guard.ts │ │ │ │ └── dash.guard.ts │ │ │ └── services │ │ │ │ └── token-service.service.ts │ │ ├── Context │ │ │ └── service │ │ │ │ └── verification-code-storage.service.ts │ │ ├── TitlePage.service.spec.ts │ │ └── products.service.spec.ts │ ├── GENERIC │ │ └── UTILS │ │ │ ├── input-validation.component.ts │ │ │ └── validation.service.ts │ ├── LAYOUT │ │ └── layout.service.ts │ ├── MOD │ │ ├── Access │ │ │ ├── CreateSign │ │ │ │ ├── create-sign.component.html │ │ │ │ ├── create-sign.component.ts │ │ │ │ └── interface │ │ │ │ │ ├── CreateSign.interface.ts │ │ │ │ │ └── UnsignedVerificationRequest.ts │ │ │ ├── EmailVerification │ │ │ │ ├── email-verification.component.html │ │ │ │ └── email-verification.component.ts │ │ │ ├── Login │ │ │ │ ├── Login.component.html │ │ │ │ ├── Login.component.ts │ │ │ │ ├── interface │ │ │ │ │ ├── loginRequest.interface.ts │ │ │ │ │ └── loginResponse.interface.ts │ │ │ │ └── service │ │ │ │ │ └── login.service.ts │ │ │ ├── RecoveryPassword │ │ │ │ ├── ForgotPassword │ │ │ │ │ ├── forgot-password.component.html │ │ │ │ │ ├── forgot-password.component.ts │ │ │ │ │ ├── interface │ │ │ │ │ │ ├── iForgoPasswordReq.interface.ts │ │ │ │ │ │ ├── newPassword.interface.ts │ │ │ │ │ │ └── passwordRecoveryVerificationCodes.interface.ts │ │ │ │ │ └── service │ │ │ │ │ │ └── forgotPassword.service.ts │ │ │ │ ├── PasswordRecoveryChange │ │ │ │ │ ├── password-recovery-change.component.html │ │ │ │ │ └── password-recovery-change.component.ts │ │ │ │ └── ValidateCodes │ │ │ │ │ ├── validate-codes.component.html │ │ │ │ │ └── validate-codes.component.ts │ │ │ ├── Register │ │ │ │ ├── PersonalAccount │ │ │ │ │ ├── PersonalAccount.component.css │ │ │ │ │ ├── PersonalAccount.component.html │ │ │ │ │ ├── PersonalAccount.component.ts │ │ │ │ │ ├── interface │ │ │ │ │ │ ├── personalAccountReq.interface.ts │ │ │ │ │ │ └── personalAccountRes.interface.ts │ │ │ │ │ └── service │ │ │ │ │ │ └── personalAccount.service.ts │ │ │ │ ├── RegisterCompany │ │ │ │ │ ├── interface │ │ │ │ │ │ └── registerCompanyRequest.interface.ts │ │ │ │ │ ├── register-company-form.component.html │ │ │ │ │ ├── register-company-form.component.ts │ │ │ │ │ └── service │ │ │ │ │ │ └── registerCompany.service.ts │ │ │ │ ├── register.component.html │ │ │ │ └── register.component.ts │ │ │ ├── SmsVerification │ │ │ │ ├── dto │ │ │ │ │ └── codeDto.ts │ │ │ │ ├── sms-verification.component.html │ │ │ │ └── sms-verification.component.ts │ │ │ └── Verification │ │ │ │ └── service │ │ │ │ └── verification.service.ts │ │ └── Dashboard │ │ │ ├── Pages │ │ │ ├── Accounts │ │ │ │ ├── accounts.component.html │ │ │ │ ├── accounts.component.ts │ │ │ │ ├── interface │ │ │ │ │ └── IAccount.ts │ │ │ │ ├── myAccounts │ │ │ │ │ ├── myAccounts.component.html │ │ │ │ │ └── myAccounts.component.ts │ │ │ │ └── openAnAccount │ │ │ │ │ ├── openAnAccount.component.html │ │ │ │ │ └── openAnAccount.component.ts │ │ │ ├── cards │ │ │ │ ├── add-card │ │ │ │ │ ├── add-card.component.html │ │ │ │ │ └── add-card.component.ts │ │ │ │ ├── cards-details │ │ │ │ │ ├── cards-details.component.html │ │ │ │ │ └── cards-details.component.ts │ │ │ │ ├── cards.component.html │ │ │ │ ├── cards.component.ts │ │ │ │ ├── inicio │ │ │ │ │ ├── inicio.component.html │ │ │ │ │ └── inicio.component.ts │ │ │ │ ├── interface │ │ │ │ │ └── cardResponsive.interface.ts │ │ │ │ └── services │ │ │ │ │ ├── cardselected.service.ts │ │ │ │ │ └── cardservice.service.ts │ │ │ ├── inicio │ │ │ │ ├── balance │ │ │ │ │ ├── balance.component.html │ │ │ │ │ └── balance.component.ts │ │ │ │ ├── cards │ │ │ │ │ ├── cards.component.html │ │ │ │ │ ├── cards.component.ts │ │ │ │ │ └── data.ts │ │ │ │ ├── data.ts │ │ │ │ ├── inicio.component.css │ │ │ │ ├── inicio.component.html │ │ │ │ ├── inicio.component.ts │ │ │ │ ├── interface │ │ │ │ │ └── currencyExchange.interface.ts │ │ │ │ ├── loans │ │ │ │ │ ├── loans.component.html │ │ │ │ │ └── loans.component.ts │ │ │ │ ├── servicio │ │ │ │ │ └── start-panel.service.ts │ │ │ │ └── transactions │ │ │ │ │ ├── transactions.component.html │ │ │ │ │ └── transactions.component.ts │ │ │ ├── loans │ │ │ │ ├── interface │ │ │ │ │ └── ILoan.ts │ │ │ │ ├── loans.component.html │ │ │ │ ├── loans.component.ts │ │ │ │ └── service │ │ │ │ │ └── loan.service.ts │ │ │ ├── proffile │ │ │ │ ├── proffile.component.html │ │ │ │ └── proffile.component.ts │ │ │ ├── transactions │ │ │ │ ├── interface │ │ │ │ │ ├── signedReq.interface.ts │ │ │ │ │ ├── signedRes.interface.ts │ │ │ │ │ ├── transfer.interface.ts │ │ │ │ │ └── transferRes.interface.ts │ │ │ │ ├── my-transactions │ │ │ │ │ ├── my-transactions.component.html │ │ │ │ │ └── my-transactions.component.ts │ │ │ │ ├── service │ │ │ │ │ ├── sharedAccountNumber.service.ts │ │ │ │ │ └── transfer.service.ts │ │ │ │ ├── trading-options │ │ │ │ │ ├── trading-options.component.html │ │ │ │ │ └── trading-options.component.ts │ │ │ │ ├── transactions.component.html │ │ │ │ ├── transactions.component.ts │ │ │ │ └── transfer │ │ │ │ │ ├── transfer.component.html │ │ │ │ │ └── transfer.component.ts │ │ │ └── tvp │ │ │ │ ├── tvp.component.html │ │ │ │ └── tvp.component.ts │ │ │ ├── dashboard.component.html │ │ │ ├── dashboard.component.ts │ │ │ └── services │ │ │ └── account.service.ts │ ├── SHARED │ │ ├── Directives │ │ │ └── directives.md │ │ └── Widgets │ │ │ ├── input-app.html │ │ │ ├── sidebar │ │ │ ├── sidebar.component.html │ │ │ └── sidebar.component.ts │ │ │ ├── w-card-details │ │ │ ├── w-card-details.component.html │ │ │ └── w-card-details.component.ts │ │ │ ├── w-card-filter-tabs │ │ │ ├── w-card-filter-tabs.component.html │ │ │ └── w-card-filter-tabs.component.ts │ │ │ ├── w-header-register │ │ │ ├── w-header-register.component.html │ │ │ └── w-header-register.component.ts │ │ │ ├── w-header │ │ │ ├── w-header.component.html │ │ │ └── w-header.component.ts │ │ │ ├── w-hero-banner │ │ │ ├── w-hero-banner.component.html │ │ │ ├── w-hero-banner.component.scss │ │ │ └── w-hero-banner.component.ts │ │ │ ├── w-individual-card │ │ │ ├── w-individual-card.component.html │ │ │ └── w-individual-card.component.ts │ │ │ ├── w-input │ │ │ ├── input-app.css │ │ │ ├── input-app.html │ │ │ └── input-app.ts │ │ │ ├── w-mobile-user │ │ │ ├── w-mobile-user.component.html │ │ │ └── w-mobile-user.component.ts │ │ │ ├── w-nav │ │ │ ├── services │ │ │ │ ├── language.service.ts │ │ │ │ ├── logout.service.ts │ │ │ │ └── title.service.ts │ │ │ ├── w-nav-language │ │ │ │ ├── w-nav-language.component.html │ │ │ │ └── w-nav-language.component.ts │ │ │ ├── w-nav-link │ │ │ │ ├── w-nav-link.component.html │ │ │ │ └── w-nav-link.component.ts │ │ │ ├── w-nav-notification │ │ │ │ ├── w-nav-notification.component.html │ │ │ │ └── w-nav-notification.component.ts │ │ │ ├── w-nav-search │ │ │ │ ├── w-nav-search.component.html │ │ │ │ └── w-nav-search.component.ts │ │ │ ├── w-nav-user │ │ │ │ ├── w-nav-user.component.html │ │ │ │ └── w-nav-user.component.ts │ │ │ ├── w-nav.component.html │ │ │ └── w-nav.component.ts │ │ │ └── w-total-balance │ │ │ ├── currency.service.ts │ │ │ ├── w-total-balance.component.html │ │ │ └── w-total-balance.component.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.config.ts │ └── app.routes.ts ├── assets │ ├── BANCO DE LA PESETA-03.eps │ ├── BANCO_DE_LA_PESETA.svg │ ├── BANCO_DE_LA_PESETA_Blue.svg │ ├── accounts.json │ ├── add-button.svg │ ├── cards.json │ ├── cardsdata.json │ ├── croped.svg │ ├── currency-exchange.json │ ├── currency.json │ ├── fonts │ │ └── Poppins │ │ │ ├── Poppins-Black.ttf │ │ │ ├── Poppins-BlackItalic.ttf │ │ │ ├── Poppins-Bold.ttf │ │ │ ├── Poppins-BoldItalic.ttf │ │ │ ├── Poppins-ExtraBold.ttf │ │ │ ├── Poppins-ExtraBoldItalic.ttf │ │ │ ├── Poppins-ExtraLight.ttf │ │ │ ├── Poppins-ExtraLightItalic.ttf │ │ │ ├── Poppins-Italic.ttf │ │ │ ├── Poppins-Light.ttf │ │ │ ├── Poppins-LightItalic.ttf │ │ │ ├── Poppins-Medium.ttf │ │ │ ├── Poppins-MediumItalic.ttf │ │ │ ├── Poppins-Regular.ttf │ │ │ ├── Poppins-SemiBold.ttf │ │ │ ├── Poppins-SemiBoldItalic.ttf │ │ │ ├── Poppins-Thin.ttf │ │ │ └── Poppins-ThinItalic.ttf │ ├── i18n │ │ ├── en.json │ │ └── es.json │ ├── icons │ │ ├── arrow_right.svg │ │ ├── banco_logo.svg │ │ ├── email.svg │ │ ├── external-link.svg │ │ ├── google.svg │ │ ├── navbar │ │ │ ├── eurflag.svg │ │ │ ├── language.svg │ │ │ ├── notification.svg │ │ │ ├── spainflag.svg │ │ │ ├── unitedState.svg │ │ │ └── usaflag.svg │ │ ├── reshot-icon-lock-E9JS4ARYUH.svg │ │ ├── reveal.svg │ │ ├── sidebar │ │ │ ├── accounts.svg │ │ │ ├── accountsfinal.svg │ │ │ ├── accountswhite.svg │ │ │ ├── cards.svg │ │ │ ├── cardsfinal.svg │ │ │ ├── cardswhite.svg │ │ │ ├── dashboard.svg │ │ │ ├── dashboardfinal.svg │ │ │ ├── dashboardwhite.svg │ │ │ ├── invoicing.svg │ │ │ ├── invoicingfinal.svg │ │ │ ├── invoicingwhite.svg │ │ │ ├── loans.svg │ │ │ ├── loansfinal.svg │ │ │ ├── loanswhite.svg │ │ │ ├── payments.svg │ │ │ ├── paymentsfinal.svg │ │ │ ├── paymentswhite.svg │ │ │ ├── reports.svg │ │ │ ├── reportsfinal.svg │ │ │ ├── reportswhite.svg │ │ │ ├── trade.svg │ │ │ ├── tradefinal.svg │ │ │ ├── tradewhite.svg │ │ │ ├── transactions.svg │ │ │ ├── transactionsfinal.svg │ │ │ ├── transactionswhite.svg │ │ │ ├── tvp.svg │ │ │ ├── tvpfinal.svg │ │ │ └── tvpwhite.svg │ │ ├── sms.svg │ │ └── user.svg │ ├── images │ │ ├── avatar_test.jpg │ │ ├── cards │ │ │ ├── creditCard.png │ │ │ ├── debitCard.png │ │ │ ├── mastercard.svg │ │ │ └── visa.svg │ │ ├── favicon.ico │ │ ├── login │ │ │ ├── bancoLogo.svg │ │ │ └── logoBanco.png │ │ ├── logos │ │ │ ├── blp.webp │ │ │ ├── logoBancoBlue.svg │ │ │ ├── logoBancoWhite.svg │ │ │ ├── logo_color_SVG_Mesa_de_trabajo_1.svg │ │ │ └── peseta.png │ │ ├── money-bag.png │ │ ├── money-bag.webp │ │ ├── register │ │ │ ├── enterprise.svg │ │ │ └── person.svg │ │ └── sidebar │ │ │ ├── banco_blanco.png │ │ │ └── banco_icon.png │ ├── shapes.svg │ └── tpv.json ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── global.scss ├── index.html ├── main.ts ├── manifest.webmanifest ├── polyfills.ts ├── test.ts ├── theme │ └── variables.scss └── zone-flags.ts ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/CONTRIBUTING-ES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/.github/CONTRIBUTING-ES.md -------------------------------------------------------------------------------- /.github/README-ES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/.github/README-ES.md -------------------------------------------------------------------------------- /.github/images/logo-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/.github/images/logo-01.png -------------------------------------------------------------------------------- /.github/images/logo-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/.github/images/logo-02.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/angular.json -------------------------------------------------------------------------------- /capacitor.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/capacitor.config.ts -------------------------------------------------------------------------------- /ionic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/ionic.config.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/karma.conf.js -------------------------------------------------------------------------------- /ngsw-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/ngsw-config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/package.json -------------------------------------------------------------------------------- /src/app/CORE/Auth/Auth.function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/CORE/Auth/Auth.function.ts -------------------------------------------------------------------------------- /src/app/CORE/Auth/Interceptors/token-interceptor.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/CORE/Auth/Interceptors/token-interceptor.service.ts -------------------------------------------------------------------------------- /src/app/CORE/Auth/guards/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/CORE/Auth/guards/auth.guard.ts -------------------------------------------------------------------------------- /src/app/CORE/Auth/guards/dash.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/CORE/Auth/guards/dash.guard.ts -------------------------------------------------------------------------------- /src/app/CORE/Auth/services/token-service.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/CORE/Auth/services/token-service.service.ts -------------------------------------------------------------------------------- /src/app/CORE/Context/service/verification-code-storage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/CORE/Context/service/verification-code-storage.service.ts -------------------------------------------------------------------------------- /src/app/CORE/TitlePage.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/CORE/TitlePage.service.spec.ts -------------------------------------------------------------------------------- /src/app/CORE/products.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/CORE/products.service.spec.ts -------------------------------------------------------------------------------- /src/app/GENERIC/UTILS/input-validation.component.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/GENERIC/UTILS/validation.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/GENERIC/UTILS/validation.service.ts -------------------------------------------------------------------------------- /src/app/LAYOUT/layout.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/LAYOUT/layout.service.ts -------------------------------------------------------------------------------- /src/app/MOD/Access/CreateSign/create-sign.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Access/CreateSign/create-sign.component.html -------------------------------------------------------------------------------- /src/app/MOD/Access/CreateSign/create-sign.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Access/CreateSign/create-sign.component.ts -------------------------------------------------------------------------------- /src/app/MOD/Access/CreateSign/interface/CreateSign.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Access/CreateSign/interface/CreateSign.interface.ts -------------------------------------------------------------------------------- /src/app/MOD/Access/CreateSign/interface/UnsignedVerificationRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Access/CreateSign/interface/UnsignedVerificationRequest.ts -------------------------------------------------------------------------------- /src/app/MOD/Access/EmailVerification/email-verification.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Access/EmailVerification/email-verification.component.html -------------------------------------------------------------------------------- /src/app/MOD/Access/EmailVerification/email-verification.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Access/EmailVerification/email-verification.component.ts -------------------------------------------------------------------------------- /src/app/MOD/Access/Login/Login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Access/Login/Login.component.html -------------------------------------------------------------------------------- /src/app/MOD/Access/Login/Login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Access/Login/Login.component.ts -------------------------------------------------------------------------------- /src/app/MOD/Access/Login/interface/loginRequest.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Access/Login/interface/loginRequest.interface.ts -------------------------------------------------------------------------------- /src/app/MOD/Access/Login/interface/loginResponse.interface.ts: -------------------------------------------------------------------------------- 1 | export interface LoginResponse{ 2 | token:string 3 | } -------------------------------------------------------------------------------- /src/app/MOD/Access/Login/service/login.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Access/Login/service/login.service.ts -------------------------------------------------------------------------------- /src/app/MOD/Access/RecoveryPassword/ForgotPassword/forgot-password.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Access/RecoveryPassword/ForgotPassword/forgot-password.component.html -------------------------------------------------------------------------------- /src/app/MOD/Access/RecoveryPassword/ForgotPassword/forgot-password.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Access/RecoveryPassword/ForgotPassword/forgot-password.component.ts -------------------------------------------------------------------------------- /src/app/MOD/Access/RecoveryPassword/ForgotPassword/interface/iForgoPasswordReq.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Access/RecoveryPassword/ForgotPassword/interface/iForgoPasswordReq.interface.ts -------------------------------------------------------------------------------- /src/app/MOD/Access/RecoveryPassword/ForgotPassword/interface/newPassword.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Access/RecoveryPassword/ForgotPassword/interface/newPassword.interface.ts -------------------------------------------------------------------------------- /src/app/MOD/Access/RecoveryPassword/ForgotPassword/interface/passwordRecoveryVerificationCodes.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Access/RecoveryPassword/ForgotPassword/interface/passwordRecoveryVerificationCodes.interface.ts -------------------------------------------------------------------------------- /src/app/MOD/Access/RecoveryPassword/ForgotPassword/service/forgotPassword.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Access/RecoveryPassword/ForgotPassword/service/forgotPassword.service.ts -------------------------------------------------------------------------------- /src/app/MOD/Access/RecoveryPassword/PasswordRecoveryChange/password-recovery-change.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Access/RecoveryPassword/PasswordRecoveryChange/password-recovery-change.component.html -------------------------------------------------------------------------------- /src/app/MOD/Access/RecoveryPassword/PasswordRecoveryChange/password-recovery-change.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Access/RecoveryPassword/PasswordRecoveryChange/password-recovery-change.component.ts -------------------------------------------------------------------------------- /src/app/MOD/Access/RecoveryPassword/ValidateCodes/validate-codes.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Access/RecoveryPassword/ValidateCodes/validate-codes.component.html -------------------------------------------------------------------------------- /src/app/MOD/Access/RecoveryPassword/ValidateCodes/validate-codes.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Access/RecoveryPassword/ValidateCodes/validate-codes.component.ts -------------------------------------------------------------------------------- /src/app/MOD/Access/Register/PersonalAccount/PersonalAccount.component.css: -------------------------------------------------------------------------------- 1 | :host { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/MOD/Access/Register/PersonalAccount/PersonalAccount.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Access/Register/PersonalAccount/PersonalAccount.component.html -------------------------------------------------------------------------------- /src/app/MOD/Access/Register/PersonalAccount/PersonalAccount.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Access/Register/PersonalAccount/PersonalAccount.component.ts -------------------------------------------------------------------------------- /src/app/MOD/Access/Register/PersonalAccount/interface/personalAccountReq.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Access/Register/PersonalAccount/interface/personalAccountReq.interface.ts -------------------------------------------------------------------------------- /src/app/MOD/Access/Register/PersonalAccount/interface/personalAccountRes.interface.ts: -------------------------------------------------------------------------------- 1 | export interface IPersonalAccountRes { 2 | statusCode:string 3 | } 4 | -------------------------------------------------------------------------------- /src/app/MOD/Access/Register/PersonalAccount/service/personalAccount.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Access/Register/PersonalAccount/service/personalAccount.service.ts -------------------------------------------------------------------------------- /src/app/MOD/Access/Register/RegisterCompany/interface/registerCompanyRequest.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Access/Register/RegisterCompany/interface/registerCompanyRequest.interface.ts -------------------------------------------------------------------------------- /src/app/MOD/Access/Register/RegisterCompany/register-company-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Access/Register/RegisterCompany/register-company-form.component.html -------------------------------------------------------------------------------- /src/app/MOD/Access/Register/RegisterCompany/register-company-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Access/Register/RegisterCompany/register-company-form.component.ts -------------------------------------------------------------------------------- /src/app/MOD/Access/Register/RegisterCompany/service/registerCompany.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Access/Register/RegisterCompany/service/registerCompany.service.ts -------------------------------------------------------------------------------- /src/app/MOD/Access/Register/register.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Access/Register/register.component.html -------------------------------------------------------------------------------- /src/app/MOD/Access/Register/register.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Access/Register/register.component.ts -------------------------------------------------------------------------------- /src/app/MOD/Access/SmsVerification/dto/codeDto.ts: -------------------------------------------------------------------------------- 1 | export interface CodeDto{ 2 | code: string; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/MOD/Access/SmsVerification/sms-verification.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Access/SmsVerification/sms-verification.component.html -------------------------------------------------------------------------------- /src/app/MOD/Access/SmsVerification/sms-verification.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Access/SmsVerification/sms-verification.component.ts -------------------------------------------------------------------------------- /src/app/MOD/Access/Verification/service/verification.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Access/Verification/service/verification.service.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/Accounts/accounts.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/Accounts/accounts.component.html -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/Accounts/accounts.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/Accounts/accounts.component.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/Accounts/interface/IAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/Accounts/interface/IAccount.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/Accounts/myAccounts/myAccounts.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/Accounts/myAccounts/myAccounts.component.html -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/Accounts/myAccounts/myAccounts.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/Accounts/myAccounts/myAccounts.component.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/Accounts/openAnAccount/openAnAccount.component.html: -------------------------------------------------------------------------------- 1 |
openAnAccount works!
, 2 | -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/Accounts/openAnAccount/openAnAccount.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/Accounts/openAnAccount/openAnAccount.component.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/cards/add-card/add-card.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/cards/add-card/add-card.component.html -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/cards/add-card/add-card.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/cards/add-card/add-card.component.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/cards/cards-details/cards-details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/cards/cards-details/cards-details.component.html -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/cards/cards-details/cards-details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/cards/cards-details/cards-details.component.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/cards/cards.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/cards/cards.component.html -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/cards/cards.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/cards/cards.component.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/cards/inicio/inicio.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/cards/inicio/inicio.component.html -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/cards/inicio/inicio.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/cards/inicio/inicio.component.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/cards/interface/cardResponsive.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/cards/interface/cardResponsive.interface.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/cards/services/cardselected.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/cards/services/cardselected.service.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/cards/services/cardservice.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/cards/services/cardservice.service.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/inicio/balance/balance.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/inicio/balance/balance.component.html -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/inicio/balance/balance.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/inicio/balance/balance.component.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/inicio/cards/cards.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/inicio/cards/cards.component.html -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/inicio/cards/cards.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/inicio/cards/cards.component.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/inicio/cards/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/inicio/cards/data.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/inicio/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/inicio/data.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/inicio/inicio.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/inicio/inicio.component.css -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/inicio/inicio.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/inicio/inicio.component.html -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/inicio/inicio.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/inicio/inicio.component.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/inicio/interface/currencyExchange.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/inicio/interface/currencyExchange.interface.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/inicio/loans/loans.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/inicio/loans/loans.component.html -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/inicio/loans/loans.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/inicio/loans/loans.component.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/inicio/servicio/start-panel.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/inicio/servicio/start-panel.service.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/inicio/transactions/transactions.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/inicio/transactions/transactions.component.html -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/inicio/transactions/transactions.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/inicio/transactions/transactions.component.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/loans/interface/ILoan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/loans/interface/ILoan.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/loans/loans.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/loans/loans.component.html -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/loans/loans.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/loans/loans.component.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/loans/service/loan.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/loans/service/loan.service.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/proffile/proffile.component.html: -------------------------------------------------------------------------------- 1 | 2 |proffile works!
3 | -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/proffile/proffile.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/proffile/proffile.component.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/transactions/interface/signedReq.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/transactions/interface/signedReq.interface.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/transactions/interface/signedRes.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/transactions/interface/signedRes.interface.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/transactions/interface/transfer.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/transactions/interface/transfer.interface.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/transactions/interface/transferRes.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/transactions/interface/transferRes.interface.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/transactions/my-transactions/my-transactions.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/transactions/my-transactions/my-transactions.component.html -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/transactions/my-transactions/my-transactions.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/transactions/my-transactions/my-transactions.component.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/transactions/service/sharedAccountNumber.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/transactions/service/sharedAccountNumber.service.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/transactions/service/transfer.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/transactions/service/transfer.service.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/transactions/trading-options/trading-options.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/transactions/trading-options/trading-options.component.html -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/transactions/trading-options/trading-options.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/transactions/trading-options/trading-options.component.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/transactions/transactions.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/transactions/transactions.component.html -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/transactions/transactions.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/transactions/transactions.component.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/transactions/transfer/transfer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/transactions/transfer/transfer.component.html -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/transactions/transfer/transfer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/transactions/transfer/transfer.component.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/tvp/tvp.component.html: -------------------------------------------------------------------------------- 1 |2 | tvp works! 3 |
4 | -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/Pages/tvp/tvp.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/Pages/tvp/tvp.component.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/dashboard.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/dashboard.component.html -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/dashboard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/dashboard.component.ts -------------------------------------------------------------------------------- /src/app/MOD/Dashboard/services/account.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/MOD/Dashboard/services/account.service.ts -------------------------------------------------------------------------------- /src/app/SHARED/Directives/directives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Directives/directives.md -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/input-app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/input-app.html -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/sidebar/sidebar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/sidebar/sidebar.component.html -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/sidebar/sidebar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/sidebar/sidebar.component.ts -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-card-details/w-card-details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/w-card-details/w-card-details.component.html -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-card-details/w-card-details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/w-card-details/w-card-details.component.ts -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-card-filter-tabs/w-card-filter-tabs.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/w-card-filter-tabs/w-card-filter-tabs.component.html -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-card-filter-tabs/w-card-filter-tabs.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/w-card-filter-tabs/w-card-filter-tabs.component.ts -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-header-register/w-header-register.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/w-header-register/w-header-register.component.html -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-header-register/w-header-register.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/w-header-register/w-header-register.component.ts -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-header/w-header.component.html: -------------------------------------------------------------------------------- 1 |w-header works!
, 2 | -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-header/w-header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/w-header/w-header.component.ts -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-hero-banner/w-hero-banner.component.html: -------------------------------------------------------------------------------- 1 |w-hero-banner works!
, 2 | -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-hero-banner/w-hero-banner.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-hero-banner/w-hero-banner.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/w-hero-banner/w-hero-banner.component.ts -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-individual-card/w-individual-card.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/w-individual-card/w-individual-card.component.html -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-individual-card/w-individual-card.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/w-individual-card/w-individual-card.component.ts -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-input/input-app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/w-input/input-app.css -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-input/input-app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/w-input/input-app.html -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-input/input-app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/w-input/input-app.ts -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-mobile-user/w-mobile-user.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/w-mobile-user/w-mobile-user.component.html -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-mobile-user/w-mobile-user.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/w-mobile-user/w-mobile-user.component.ts -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-nav/services/language.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/w-nav/services/language.service.ts -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-nav/services/logout.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/w-nav/services/logout.service.ts -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-nav/services/title.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/w-nav/services/title.service.ts -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-nav/w-nav-language/w-nav-language.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/w-nav/w-nav-language/w-nav-language.component.html -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-nav/w-nav-language/w-nav-language.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/w-nav/w-nav-language/w-nav-language.component.ts -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-nav/w-nav-link/w-nav-link.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/w-nav/w-nav-link/w-nav-link.component.html -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-nav/w-nav-link/w-nav-link.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/w-nav/w-nav-link/w-nav-link.component.ts -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-nav/w-nav-notification/w-nav-notification.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/w-nav/w-nav-notification/w-nav-notification.component.html -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-nav/w-nav-notification/w-nav-notification.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/w-nav/w-nav-notification/w-nav-notification.component.ts -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-nav/w-nav-search/w-nav-search.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/w-nav/w-nav-search/w-nav-search.component.html -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-nav/w-nav-search/w-nav-search.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/w-nav/w-nav-search/w-nav-search.component.ts -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-nav/w-nav-user/w-nav-user.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/w-nav/w-nav-user/w-nav-user.component.html -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-nav/w-nav-user/w-nav-user.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/w-nav/w-nav-user/w-nav-user.component.ts -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-nav/w-nav.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/w-nav/w-nav.component.html -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-nav/w-nav.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/w-nav/w-nav.component.ts -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-total-balance/currency.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/w-total-balance/currency.service.ts -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-total-balance/w-total-balance.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/w-total-balance/w-total-balance.component.html -------------------------------------------------------------------------------- /src/app/SHARED/Widgets/w-total-balance/w-total-balance.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/SHARED/Widgets/w-total-balance/w-total-balance.component.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/app.component.scss -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/app.config.ts -------------------------------------------------------------------------------- /src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/app/app.routes.ts -------------------------------------------------------------------------------- /src/assets/BANCO DE LA PESETA-03.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/BANCO DE LA PESETA-03.eps -------------------------------------------------------------------------------- /src/assets/BANCO_DE_LA_PESETA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/BANCO_DE_LA_PESETA.svg -------------------------------------------------------------------------------- /src/assets/BANCO_DE_LA_PESETA_Blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/BANCO_DE_LA_PESETA_Blue.svg -------------------------------------------------------------------------------- /src/assets/accounts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/accounts.json -------------------------------------------------------------------------------- /src/assets/add-button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/add-button.svg -------------------------------------------------------------------------------- /src/assets/cards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/cards.json -------------------------------------------------------------------------------- /src/assets/cardsdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/cardsdata.json -------------------------------------------------------------------------------- /src/assets/croped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/croped.svg -------------------------------------------------------------------------------- /src/assets/currency-exchange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/currency-exchange.json -------------------------------------------------------------------------------- /src/assets/currency.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/currency.json -------------------------------------------------------------------------------- /src/assets/fonts/Poppins/Poppins-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/fonts/Poppins/Poppins-Black.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins/Poppins-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/fonts/Poppins/Poppins-BlackItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/fonts/Poppins/Poppins-Bold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins/Poppins-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/fonts/Poppins/Poppins-BoldItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins/Poppins-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/fonts/Poppins/Poppins-ExtraBold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins/Poppins-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/fonts/Poppins/Poppins-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins/Poppins-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/fonts/Poppins/Poppins-ExtraLight.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins/Poppins-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/fonts/Poppins/Poppins-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins/Poppins-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/fonts/Poppins/Poppins-Italic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins/Poppins-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/fonts/Poppins/Poppins-Light.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins/Poppins-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/fonts/Poppins/Poppins-LightItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/fonts/Poppins/Poppins-Medium.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins/Poppins-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/fonts/Poppins/Poppins-MediumItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/fonts/Poppins/Poppins-Regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/fonts/Poppins/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins/Poppins-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/fonts/Poppins/Poppins-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins/Poppins-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/fonts/Poppins/Poppins-Thin.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins/Poppins-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/fonts/Poppins/Poppins-ThinItalic.ttf -------------------------------------------------------------------------------- /src/assets/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/i18n/en.json -------------------------------------------------------------------------------- /src/assets/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/i18n/es.json -------------------------------------------------------------------------------- /src/assets/icons/arrow_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/arrow_right.svg -------------------------------------------------------------------------------- /src/assets/icons/banco_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/banco_logo.svg -------------------------------------------------------------------------------- /src/assets/icons/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/email.svg -------------------------------------------------------------------------------- /src/assets/icons/external-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/external-link.svg -------------------------------------------------------------------------------- /src/assets/icons/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/google.svg -------------------------------------------------------------------------------- /src/assets/icons/navbar/eurflag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/navbar/eurflag.svg -------------------------------------------------------------------------------- /src/assets/icons/navbar/language.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/navbar/language.svg -------------------------------------------------------------------------------- /src/assets/icons/navbar/notification.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/navbar/notification.svg -------------------------------------------------------------------------------- /src/assets/icons/navbar/spainflag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/navbar/spainflag.svg -------------------------------------------------------------------------------- /src/assets/icons/navbar/unitedState.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/navbar/unitedState.svg -------------------------------------------------------------------------------- /src/assets/icons/navbar/usaflag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/navbar/usaflag.svg -------------------------------------------------------------------------------- /src/assets/icons/reshot-icon-lock-E9JS4ARYUH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/reshot-icon-lock-E9JS4ARYUH.svg -------------------------------------------------------------------------------- /src/assets/icons/reveal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/reveal.svg -------------------------------------------------------------------------------- /src/assets/icons/sidebar/accounts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/sidebar/accounts.svg -------------------------------------------------------------------------------- /src/assets/icons/sidebar/accountsfinal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/sidebar/accountsfinal.svg -------------------------------------------------------------------------------- /src/assets/icons/sidebar/accountswhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/sidebar/accountswhite.svg -------------------------------------------------------------------------------- /src/assets/icons/sidebar/cards.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/sidebar/cards.svg -------------------------------------------------------------------------------- /src/assets/icons/sidebar/cardsfinal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/sidebar/cardsfinal.svg -------------------------------------------------------------------------------- /src/assets/icons/sidebar/cardswhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/sidebar/cardswhite.svg -------------------------------------------------------------------------------- /src/assets/icons/sidebar/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/sidebar/dashboard.svg -------------------------------------------------------------------------------- /src/assets/icons/sidebar/dashboardfinal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/sidebar/dashboardfinal.svg -------------------------------------------------------------------------------- /src/assets/icons/sidebar/dashboardwhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/sidebar/dashboardwhite.svg -------------------------------------------------------------------------------- /src/assets/icons/sidebar/invoicing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/sidebar/invoicing.svg -------------------------------------------------------------------------------- /src/assets/icons/sidebar/invoicingfinal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/sidebar/invoicingfinal.svg -------------------------------------------------------------------------------- /src/assets/icons/sidebar/invoicingwhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/sidebar/invoicingwhite.svg -------------------------------------------------------------------------------- /src/assets/icons/sidebar/loans.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/sidebar/loans.svg -------------------------------------------------------------------------------- /src/assets/icons/sidebar/loansfinal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/sidebar/loansfinal.svg -------------------------------------------------------------------------------- /src/assets/icons/sidebar/loanswhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/sidebar/loanswhite.svg -------------------------------------------------------------------------------- /src/assets/icons/sidebar/payments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/sidebar/payments.svg -------------------------------------------------------------------------------- /src/assets/icons/sidebar/paymentsfinal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/sidebar/paymentsfinal.svg -------------------------------------------------------------------------------- /src/assets/icons/sidebar/paymentswhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/sidebar/paymentswhite.svg -------------------------------------------------------------------------------- /src/assets/icons/sidebar/reports.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/sidebar/reports.svg -------------------------------------------------------------------------------- /src/assets/icons/sidebar/reportsfinal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/sidebar/reportsfinal.svg -------------------------------------------------------------------------------- /src/assets/icons/sidebar/reportswhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/sidebar/reportswhite.svg -------------------------------------------------------------------------------- /src/assets/icons/sidebar/trade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/sidebar/trade.svg -------------------------------------------------------------------------------- /src/assets/icons/sidebar/tradefinal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/sidebar/tradefinal.svg -------------------------------------------------------------------------------- /src/assets/icons/sidebar/tradewhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/sidebar/tradewhite.svg -------------------------------------------------------------------------------- /src/assets/icons/sidebar/transactions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/sidebar/transactions.svg -------------------------------------------------------------------------------- /src/assets/icons/sidebar/transactionsfinal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/sidebar/transactionsfinal.svg -------------------------------------------------------------------------------- /src/assets/icons/sidebar/transactionswhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/sidebar/transactionswhite.svg -------------------------------------------------------------------------------- /src/assets/icons/sidebar/tvp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/sidebar/tvp.svg -------------------------------------------------------------------------------- /src/assets/icons/sidebar/tvpfinal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/sidebar/tvpfinal.svg -------------------------------------------------------------------------------- /src/assets/icons/sidebar/tvpwhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/sidebar/tvpwhite.svg -------------------------------------------------------------------------------- /src/assets/icons/sms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/sms.svg -------------------------------------------------------------------------------- /src/assets/icons/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/icons/user.svg -------------------------------------------------------------------------------- /src/assets/images/avatar_test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/images/avatar_test.jpg -------------------------------------------------------------------------------- /src/assets/images/cards/creditCard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/images/cards/creditCard.png -------------------------------------------------------------------------------- /src/assets/images/cards/debitCard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/images/cards/debitCard.png -------------------------------------------------------------------------------- /src/assets/images/cards/mastercard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/images/cards/mastercard.svg -------------------------------------------------------------------------------- /src/assets/images/cards/visa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/images/cards/visa.svg -------------------------------------------------------------------------------- /src/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/images/favicon.ico -------------------------------------------------------------------------------- /src/assets/images/login/bancoLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/images/login/bancoLogo.svg -------------------------------------------------------------------------------- /src/assets/images/login/logoBanco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/images/login/logoBanco.png -------------------------------------------------------------------------------- /src/assets/images/logos/blp.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/images/logos/blp.webp -------------------------------------------------------------------------------- /src/assets/images/logos/logoBancoBlue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/images/logos/logoBancoBlue.svg -------------------------------------------------------------------------------- /src/assets/images/logos/logoBancoWhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/images/logos/logoBancoWhite.svg -------------------------------------------------------------------------------- /src/assets/images/logos/logo_color_SVG_Mesa_de_trabajo_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/images/logos/logo_color_SVG_Mesa_de_trabajo_1.svg -------------------------------------------------------------------------------- /src/assets/images/logos/peseta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/images/logos/peseta.png -------------------------------------------------------------------------------- /src/assets/images/money-bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/images/money-bag.png -------------------------------------------------------------------------------- /src/assets/images/money-bag.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/images/money-bag.webp -------------------------------------------------------------------------------- /src/assets/images/register/enterprise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/images/register/enterprise.svg -------------------------------------------------------------------------------- /src/assets/images/register/person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/images/register/person.svg -------------------------------------------------------------------------------- /src/assets/images/sidebar/banco_blanco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/images/sidebar/banco_blanco.png -------------------------------------------------------------------------------- /src/assets/images/sidebar/banco_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/images/sidebar/banco_icon.png -------------------------------------------------------------------------------- /src/assets/shapes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/shapes.svg -------------------------------------------------------------------------------- /src/assets/tpv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/assets/tpv.json -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/global.scss -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/manifest.webmanifest -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/theme/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/theme/variables.scss -------------------------------------------------------------------------------- /src/zone-flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/src/zone-flags.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSO-TECHINFO/bancodelapeseta-frontend/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------