├── src
├── assets
│ ├── .gitkeep
│ ├── images
│ │ ├── Frame 2.svg
│ │ ├── Dropdown.svg
│ │ ├── lupa.svg
│ │ ├── Voltar.svg
│ │ ├── logo-card.svg
│ │ ├── patient.svg
│ │ ├── Logo.svg
│ │ ├── calendar.svg
│ │ ├── doctor.svg
│ │ ├── person.svg
│ │ └── Logo-icon.svg
│ └── scss
│ │ └── _base.scss
├── app
│ ├── app.component.scss
│ ├── app.component.html
│ ├── shared
│ │ ├── components
│ │ │ ├── container
│ │ │ │ ├── container.component.html
│ │ │ │ ├── container.component.scss
│ │ │ │ └── container.component.ts
│ │ │ ├── error-message
│ │ │ │ ├── error-message.component.html
│ │ │ │ ├── error-message.component.scss
│ │ │ │ └── error-message.component.ts
│ │ │ ├── button
│ │ │ │ ├── button.component.html
│ │ │ │ ├── button.component.ts
│ │ │ │ └── button.component.scss
│ │ │ ├── header
│ │ │ │ ├── header.component.html
│ │ │ │ ├── header.component.ts
│ │ │ │ └── header.component.scss
│ │ │ ├── modals
│ │ │ │ ├── modal-info
│ │ │ │ │ ├── modal-info.component.html
│ │ │ │ │ ├── modal-info.component.ts
│ │ │ │ │ └── modal-info.component.scss
│ │ │ │ └── modal-deactivation
│ │ │ │ │ ├── modal-deactivation.component.html
│ │ │ │ │ ├── modal-deactivation.component.scss
│ │ │ │ │ └── modal-deactivation.component.ts
│ │ │ ├── card-profile
│ │ │ │ ├── card-profile.component.ts
│ │ │ │ ├── card-profile.component.html
│ │ │ │ └── card-profile.component.scss
│ │ │ └── forms
│ │ │ │ ├── contact-form
│ │ │ │ ├── contact-form.component.ts
│ │ │ │ ├── contact-form.component.html
│ │ │ │ └── contact-form.component.scss
│ │ │ │ └── address-form
│ │ │ │ ├── address-form.component.ts
│ │ │ │ ├── address-form.component.scss
│ │ │ │ └── address-form.component.html
│ │ ├── models
│ │ │ ├── contact.ts
│ │ │ ├── address.ts
│ │ │ ├── profile-card.ts
│ │ │ └── state.ts
│ │ ├── pipes
│ │ │ ├── cpf.pipe.ts
│ │ │ ├── postal-code.pipe.ts
│ │ │ ├── phone.pipe.ts
│ │ │ └── filter-by-name.pipe.ts
│ │ ├── services
│ │ │ ├── contact-form.service.ts
│ │ │ ├── address-form.service.ts
│ │ │ ├── profile-deactivation.service.ts
│ │ │ └── profile-listing.service.ts
│ │ └── shared.module.ts
│ ├── features
│ │ ├── doctors
│ │ │ ├── models
│ │ │ │ ├── specialty.ts
│ │ │ │ └── doctor.ts
│ │ │ ├── services
│ │ │ │ ├── doctor-listing.service.ts
│ │ │ │ └── doctor.service.ts
│ │ │ ├── doctors-routing.module.ts
│ │ │ ├── doctors.module.ts
│ │ │ └── pages
│ │ │ │ ├── doctor-list
│ │ │ │ ├── doctor-list.component.html
│ │ │ │ ├── doctor-list.component.scss
│ │ │ │ └── doctor-list.component.ts
│ │ │ │ ├── doctor-edit
│ │ │ │ ├── doctor-edit.component.scss
│ │ │ │ ├── doctor-edit.component.html
│ │ │ │ └── doctor-edit.component.ts
│ │ │ │ └── doctor-register
│ │ │ │ ├── doctor-register.component.scss
│ │ │ │ ├── doctor-register.component.html
│ │ │ │ └── doctor-register.component.ts
│ │ ├── home
│ │ │ ├── home-routing.module.ts
│ │ │ ├── home.module.ts
│ │ │ ├── home.component.ts
│ │ │ ├── home.component.html
│ │ │ └── home.component.scss
│ │ └── patients
│ │ │ ├── patients-routing.module.ts
│ │ │ ├── patients.module.ts
│ │ │ ├── pages
│ │ │ ├── patient-list
│ │ │ │ ├── patient-list.component.html
│ │ │ │ ├── patient-list.component.scss
│ │ │ │ └── patient-list.component.ts
│ │ │ ├── patient-edit
│ │ │ │ ├── patient-edit.component.scss
│ │ │ │ ├── patient-edit.component.html
│ │ │ │ └── patient-edit.component.ts
│ │ │ └── patient-register
│ │ │ │ ├── patient-register.component.scss
│ │ │ │ ├── patient-register.component.html
│ │ │ │ └── patient-register.component.ts
│ │ │ ├── models
│ │ │ └── patient.ts
│ │ │ └── services
│ │ │ └── patient.service.ts
│ ├── app.component.ts
│ ├── app.module.ts
│ └── app-routing.module.ts
├── favicon.ico
├── environments
│ ├── environment.ts
│ └── environment.development.ts
├── main.ts
├── index.html
└── styles.scss
├── commitlint.config.js
├── .lintstagedrc.json
├── .husky
├── pre-commit
└── commit-msg
├── .vscode
├── extensions.json
├── launch.json
└── tasks.json
├── tsconfig.spec.json
├── tsconfig.app.json
├── .editorconfig
├── .prettierrc.json
├── .gitignore
├── .prettierignore
├── tsconfig.json
├── README.md
├── .eslintrc.json
├── package.json
└── angular.json
/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/app/app.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/app/app.component.html:
--------------------------------------------------------------------------------
1 | {{ headerTitle }}
9 |
Escolha qual seção deseja iniciar:
10 | 17 | 24 |Consultas
27 |7 | {{ profile.specialty }} | CRM {{ profile.crm }}-{{ 8 | profile.address.state 9 | }} 10 |
11 |{{ profile.cpf | cpf }}
12 |{{ profile.contact.email }}
17 |{{ profile.contact.phone | phone }}
18 |{{ profile.address.street }}, {{ profile.address.number }}
22 |{{ profile.address.city }}/{{ profile.address.state }}
23 |CEP: {{ profile.address.postalCode | postalCode }}
24 |