├── src
├── assets
│ ├── .gitkeep
│ ├── imgs
│ │ ├── default.jpg
│ │ ├── home
│ │ │ ├── h1.png
│ │ │ ├── h2.jpg
│ │ │ └── image.jpg
│ │ └── agora.svg
│ ├── photos
│ │ ├── Agoura.png
│ │ ├── verify.jpg
│ │ ├── avatar02.png
│ │ ├── mostafaa.jpeg
│ │ └── omar-1.jpeg
│ └── images
│ │ ├── Visa.svg.png
│ │ ├── sgin_up.jpg
│ │ ├── Google-Icon.jpg
│ │ ├── not-default.png
│ │ ├── login_london.jpg
│ │ ├── MasterCard_Logo.svg.png
│ │ ├── icons8-facebook-48.png
│ │ ├── icons8-apple-logo-50.png
│ │ └── icons8-apple-logo.svg
├── app
│ ├── app.component.css
│ ├── Components
│ │ ├── layout
│ │ │ ├── layout.component.css
│ │ │ ├── layout.component.html
│ │ │ └── layout.component.ts
│ │ ├── mytoast
│ │ │ ├── mytoast.component.css
│ │ │ ├── mytoast.component.ts
│ │ │ └── mytoast.component.html
│ │ ├── offcanvas
│ │ │ ├── offcanvas.component.css
│ │ │ ├── offcanvas.component.ts
│ │ │ └── offcanvas.component.html
│ │ ├── Profile
│ │ │ ├── bids
│ │ │ │ ├── bids.component.css
│ │ │ │ ├── bids.component.html
│ │ │ │ └── bids.component.ts
│ │ │ ├── apartments
│ │ │ │ ├── apartments.component.css
│ │ │ │ ├── apartments.component.html
│ │ │ │ └── apartments.component.ts
│ │ │ ├── orders
│ │ │ │ ├── orders.component.css
│ │ │ │ ├── orders.component.html
│ │ │ │ └── orders.component.ts
│ │ │ ├── changepass
│ │ │ │ ├── changepass.component.html
│ │ │ │ ├── changepass.component.ts
│ │ │ │ └── changepass.component.css
│ │ │ ├── EditProfile
│ │ │ │ └── edit-profile
│ │ │ │ │ ├── edit-profile.component.css
│ │ │ │ │ ├── edit-profile.component.html
│ │ │ │ │ └── edit-profile.component.ts
│ │ │ └── profile
│ │ │ │ ├── profile.component.ts
│ │ │ │ ├── profile.component.html
│ │ │ │ └── profile.component.css
│ │ ├── bid-history
│ │ │ ├── bid-history.component.css
│ │ │ ├── bid-history.component.ts
│ │ │ └── bid-history.component.html
│ │ ├── dashboard
│ │ │ ├── views
│ │ │ │ ├── bids
│ │ │ │ │ ├── bids.component.css
│ │ │ │ │ ├── bids.component.ts
│ │ │ │ │ └── bids.component.html
│ │ │ │ ├── charts
│ │ │ │ │ ├── charts.component.css
│ │ │ │ │ ├── charts.component.html
│ │ │ │ │ └── charts.component.ts
│ │ │ │ ├── dashboard-users
│ │ │ │ │ ├── dashboard-users.component.css
│ │ │ │ │ ├── dashboard-users.component.html
│ │ │ │ │ └── dashboard-users.component.ts
│ │ │ │ └── dashboard-bid-details
│ │ │ │ │ ├── dashboard-bid-details.component.css
│ │ │ │ │ └── dashboard-bid-details.component.ts
│ │ │ └── containers
│ │ │ │ ├── index.ts
│ │ │ │ └── default-layout
│ │ │ │ ├── default-footer
│ │ │ │ ├── default-footer.component.scss
│ │ │ │ ├── default-footer.component.html
│ │ │ │ └── default-footer.component.ts
│ │ │ │ ├── default-header
│ │ │ │ ├── default-header.component.scss
│ │ │ │ ├── default-header.component.ts
│ │ │ │ └── default-header.component.html
│ │ │ │ ├── index.ts
│ │ │ │ ├── _nav.ts
│ │ │ │ ├── default-layout.component.ts
│ │ │ │ └── default-layout.component.html
│ │ ├── footer-lower
│ │ │ ├── footer-lower.component.css
│ │ │ ├── footer-lower.component.html
│ │ │ └── footer-lower.component.ts
│ │ ├── login-modal
│ │ │ ├── login-modal.component.css
│ │ │ ├── login-modal.component.html
│ │ │ └── login-modal.component.ts
│ │ ├── category-scroller
│ │ │ ├── category-scroller.component.css
│ │ │ ├── category-scroller.component.html
│ │ │ └── category-scroller.component.ts
│ │ ├── edit-product-form
│ │ │ ├── edit-product-form.component.css
│ │ │ ├── edit-product-form.component.html
│ │ │ └── edit-product-form.component.ts
│ │ ├── footer-column
│ │ │ ├── footer-column.component.css
│ │ │ ├── footer-column.component.html
│ │ │ └── footer-column.component.ts
│ │ ├── create-product-form
│ │ │ ├── create-product-form.component.css
│ │ │ └── create-product-form.component.ts
│ │ ├── Auth
│ │ │ ├── thirdPartyLoginButtons
│ │ │ │ ├── google-button
│ │ │ │ │ ├── google-button.component.css
│ │ │ │ │ ├── google-button.component.html
│ │ │ │ │ └── google-button.component.ts
│ │ │ │ └── facebook-button
│ │ │ │ │ ├── facebook-button.component.css
│ │ │ │ │ ├── facebook-button.component.ts
│ │ │ │ │ └── facebook-button.component.html
│ │ │ ├── login
│ │ │ │ ├── login.component.ts
│ │ │ │ └── login.component.html
│ │ │ └── sign-up
│ │ │ │ ├── sign-up.component.ts
│ │ │ │ └── sign-up.component.html
│ │ ├── product-details
│ │ │ ├── product-details.component.css
│ │ │ └── product-details.component.ts
│ │ ├── footer
│ │ │ ├── footer.component.css
│ │ │ ├── footer.component.ts
│ │ │ └── footer.component.html
│ │ ├── up-to-top
│ │ │ ├── up-to-top.component.css
│ │ │ ├── up-to-top.component.html
│ │ │ └── up-to-top.component.ts
│ │ ├── notfound-page
│ │ │ ├── notfound-page.component.html
│ │ │ ├── notfound-page.component.ts
│ │ │ └── notfound-page.component.css
│ │ ├── about
│ │ │ ├── about.component.ts
│ │ │ └── about.component.css
│ │ ├── footer-upper
│ │ │ ├── footer-upper.component.css
│ │ │ ├── footer-upper.component.ts
│ │ │ └── footer-upper.component.html
│ │ ├── home
│ │ │ ├── home.component.ts
│ │ │ ├── home.component.css
│ │ │ └── home.component.html
│ │ ├── Payment
│ │ │ ├── payment-fail
│ │ │ │ ├── payment-fail.component.html
│ │ │ │ ├── payment-fail.component.ts
│ │ │ │ └── payment-fail.component.css
│ │ │ ├── payment-success
│ │ │ │ ├── payment-success.component.html
│ │ │ │ ├── payment-success.component.ts
│ │ │ │ └── payment-success.component.css
│ │ │ ├── checkout
│ │ │ │ ├── checkout.component.ts
│ │ │ │ └── checkout.component.html
│ │ │ └── payment-method
│ │ │ │ ├── payment-method.component.ts
│ │ │ │ └── payment-method.component.html
│ │ ├── forget-password
│ │ │ ├── forget-password.component.html
│ │ │ ├── forget-password.component.ts
│ │ │ └── forget-password.component.css
│ │ ├── otp
│ │ │ ├── otp.component.html
│ │ │ ├── otp.component.ts
│ │ │ └── otp.component.css
│ │ ├── nav-bar
│ │ │ ├── nav-bar.component.css
│ │ │ ├── nav-bar.component.ts
│ │ │ └── nav-bar.component.html
│ │ ├── reset-password
│ │ │ ├── reset-password.component.html
│ │ │ ├── reset-password.component.ts
│ │ │ └── reset-password.component.css
│ │ └── main-page-items-section
│ │ │ ├── main-page-items-section.component.ts
│ │ │ ├── main-page-items-section.component.css
│ │ │ └── main-page-items-section.component.html
│ ├── app.component.html
│ ├── Service
│ │ ├── toast-service.service.ts
│ │ ├── forget-password.service.ts
│ │ ├── otp.service.ts
│ │ ├── reset-password.service.ts
│ │ ├── create-bid.service.ts
│ │ ├── checkout.service.ts
│ │ ├── dashboard-table.service.ts
│ │ ├── bids.service.ts
│ │ ├── auth.service.ts
│ │ ├── profile-page.service.ts
│ │ └── user-home-data.service.ts
│ ├── Directives
│ │ └── a-hover.directive.ts
│ ├── intercreptors
│ │ ├── auth.interceptor.ts
│ │ └── response.interceptor.ts
│ ├── core
│ │ └── guards
│ │ │ ├── auth.guard.ts
│ │ │ ├── admin-auth.guard.ts
│ │ │ └── guest-auth.guard.ts
│ ├── app.component.ts
│ ├── app-routing.module.ts
│ └── icons
│ │ └── icon-subset.ts
├── scss
│ ├── _custom.scss
│ ├── _charts.scss
│ ├── _layout.scss
│ ├── _fixes.scss
│ ├── styles.scss
│ ├── _scrollbar.scss
│ └── _examples.scss
├── favicon.ico
├── Environment
│ └── env.ts
├── main.ts
├── styles.css
└── index.html
├── remoteconfig.template.json
├── .vscode
├── settings.json
├── extensions.json
├── launch.json
└── tasks.json
├── .firebaserc
├── database.rules.json
├── .editorconfig
├── tsconfig.app.json
├── tsconfig.spec.json
├── .github
└── workflows
│ ├── firebase-hosting-merge.yml
│ └── firebase-hosting-pull-request.yml
├── .gitignore
├── firebase.json
├── tsconfig.json
├── package.json
├── README.md
└── angular.json
/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/remoteconfig.template.json:
--------------------------------------------------------------------------------
1 | {}
--------------------------------------------------------------------------------
/src/app/app.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | }
3 |
--------------------------------------------------------------------------------
/src/app/Components/layout/layout.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/app/Components/mytoast/mytoast.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/app/Components/offcanvas/offcanvas.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/app/Components/Profile/bids/bids.component.css:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/src/app/Components/bid-history/bid-history.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/app/Components/dashboard/views/bids/bids.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/app/Components/footer-lower/footer-lower.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/app/Components/login-modal/login-modal.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/app/Components/Profile/apartments/apartments.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/app/Components/Profile/orders/orders.component.css:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/src/app/Components/dashboard/views/charts/charts.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/app/Components/login-modal/login-modal.component.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/src/scss/_custom.scss:
--------------------------------------------------------------------------------
1 | // Here you can add other styles
2 |
3 |
--------------------------------------------------------------------------------
/src/app/Components/category-scroller/category-scroller.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/app/Components/edit-product-form/edit-product-form.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/app/Components/footer-column/footer-column.component.css:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/src/app/Components/category-scroller/category-scroller.component.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/app/Components/create-product-form/create-product-form.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.firebaserc:
--------------------------------------------------------------------------------
1 | {
2 | "projects": {
3 | "default": "agora-4"
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/src/app/Components/dashboard/views/dashboard-users/dashboard-users.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/app/Components/Auth/thirdPartyLoginButtons/google-button/google-button.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/app/Components/dashboard/containers/index.ts:
--------------------------------------------------------------------------------
1 | export * from './default-layout';
2 |
--------------------------------------------------------------------------------
/src/app/Components/Auth/thirdPartyLoginButtons/facebook-button/facebook-button.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/app/Components/dashboard/views/dashboard-bid-details/dashboard-bid-details.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohamedyousef44/Agoura-Angular/HEAD/src/favicon.ico
--------------------------------------------------------------------------------
/src/app/Components/dashboard/containers/default-layout/default-footer/default-footer.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/app/Components/dashboard/containers/default-layout/default-header/default-header.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/assets/imgs/default.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohamedyousef44/Agoura-Angular/HEAD/src/assets/imgs/default.jpg
--------------------------------------------------------------------------------
/src/assets/imgs/home/h1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohamedyousef44/Agoura-Angular/HEAD/src/assets/imgs/home/h1.png
--------------------------------------------------------------------------------
/src/assets/imgs/home/h2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohamedyousef44/Agoura-Angular/HEAD/src/assets/imgs/home/h2.jpg
--------------------------------------------------------------------------------
/src/assets/photos/Agoura.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohamedyousef44/Agoura-Angular/HEAD/src/assets/photos/Agoura.png
--------------------------------------------------------------------------------
/src/assets/photos/verify.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohamedyousef44/Agoura-Angular/HEAD/src/assets/photos/verify.jpg
--------------------------------------------------------------------------------
/src/assets/images/Visa.svg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohamedyousef44/Agoura-Angular/HEAD/src/assets/images/Visa.svg.png
--------------------------------------------------------------------------------
/src/assets/images/sgin_up.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohamedyousef44/Agoura-Angular/HEAD/src/assets/images/sgin_up.jpg
--------------------------------------------------------------------------------
/src/assets/imgs/home/image.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohamedyousef44/Agoura-Angular/HEAD/src/assets/imgs/home/image.jpg
--------------------------------------------------------------------------------
/src/assets/photos/avatar02.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohamedyousef44/Agoura-Angular/HEAD/src/assets/photos/avatar02.png
--------------------------------------------------------------------------------
/src/assets/photos/mostafaa.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohamedyousef44/Agoura-Angular/HEAD/src/assets/photos/mostafaa.jpeg
--------------------------------------------------------------------------------
/src/assets/photos/omar-1.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohamedyousef44/Agoura-Angular/HEAD/src/assets/photos/omar-1.jpeg
--------------------------------------------------------------------------------
/src/assets/images/Google-Icon.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohamedyousef44/Agoura-Angular/HEAD/src/assets/images/Google-Icon.jpg
--------------------------------------------------------------------------------
/src/assets/images/not-default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohamedyousef44/Agoura-Angular/HEAD/src/assets/images/not-default.png
--------------------------------------------------------------------------------
/src/assets/images/login_london.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohamedyousef44/Agoura-Angular/HEAD/src/assets/images/login_london.jpg
--------------------------------------------------------------------------------
/src/app/Components/edit-product-form/edit-product-form.component.html:
--------------------------------------------------------------------------------
1 |
{{ text }}
3 |{{ style }}
9 |Loading...
Please enter your email address below
and we will send you a link to reset your password.

Please enter the code sent to you by email.
5 | 13 |{{title}}
9 |6 | agora 7 |
8 |11 | The Perfect 12 |
13 |16 | Place For You 17 |
18 |Please enter a new password below.
4 | 11 || Apartment | 13 |Bid | 14 |Date | 15 |
|---|---|---|
| {{ order.apartment.title }} | 20 |{{ order.amount }} | 21 |{{ order.date }} | 22 |
| Number | 8 |Name | 9 |Owned appartments | 11 |Number of bids | 12 |Verification | 13 |Delete | 14 | 15 ||
|---|---|---|---|---|---|---|
| {{i+1}} | 20 |{{user.name}} | 21 |{{user.email}} | 22 |{{user.ownedApartments.length}} | 23 |{{user.bids.length}} | 24 |{{user.isVerified}} | 25 |26 | 27 | |
| Title | 19 |Bids | 20 |Status | 21 |
|---|---|---|
| {{ apartment.title | uppercase }} | 26 |{{ apartment.bids.length }} | 27 |{{ apartment.status | uppercase }} | 28 |
| Apartment | 19 |Bid | 20 |Date | 21 |
|---|---|---|
| 27 | {{ 28 | bid.apartment.title 29 | }} 30 | | 31 |{{ bid.amountMoney }} | 32 |{{ bid.date | date : "dd/MM/yyyy" }} | 33 |
Updating...
| Bidder | 71 |Bid Amount | 72 |Bid Time | 73 |
|---|---|---|
| 78 | {{ item.user }} (1) 79 | | 80 |{{ item["amountMoney"] }} EUR | 81 |{{ item["date"] | date : "medium" }} | 82 |