Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update UI and Styling for Contact Management App #889

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 2 additions & 9 deletions Angular-JS-Projects/Advanced/Contact-Manager/README.md
mawalou14 marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

<h1 align='center'><b>💥 CONTACT MANAGER 💥</b></h1>

<!-- -------------------------------------------------------------------------------------------------------------- -->
Expand All @@ -13,15 +12,14 @@
<img src="https://img.shields.io/badge/typescipt-darkblue?style=for-the-badge&logo=typescript&logoColor=white)" />
</div>


![Line](https://github.com/Avdhesh-Varshney/WebMasterLog/assets/114330097/4b78510f-a941-45f8-a9d5-80ed0705e847)

<!-- -------------------------------------------------------------------------------------------------------------- -->

## :zap: Description 📃

- This is an contact manager web application which allowed users to view, add, edit, delete and search contact details (name, phone and email).
- This is an contact manager web application which allowed users to view, add, edit, delete and search contact details (name, phone and email). Users are notified with the use of a popup alert after every operation.

<!-- -------------------------------------------------------------------------------------------------------------- -->

## :zap: How to run it? 🕹️
Expand Down Expand Up @@ -62,7 +60,6 @@ ng serve

8. Open a web browser and go to `http://localhost:4200/` to see the Contact manager running.


<!-- -------------------------------------------------------------------------------------------------------------- -->

## :zap: Screenshots 📸
Expand All @@ -73,10 +70,6 @@ ng serve
<img src="./images/image04.png">
<img src="./images/image05.png">



![Line](https://github.com/Avdhesh-Varshney/WebMasterLog/assets/114330097/4b78510f-a941-45f8-a9d5-80ed0705e847)

<!-- -------------------------------------------------------------------------------------------------------------- -->

<h4 align='center'>Developed By <b><i>DHARSHI B.</i></b> 👩</h4>
Expand Down
3 changes: 2 additions & 1 deletion Angular-JS-Projects/Advanced/Contact-Manager/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
}
],
"styles": [
"src/styles.css"
"src/styles.css",
"node_modules/ngx-toastr/toastr.css"
],
"scripts": []
},
Expand Down
21 changes: 20 additions & 1 deletion Angular-JS-Projects/Advanced/Contact-Manager/db.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
{
"contacts": []
"contacts": [
{
"id": "ac05",
"name": "John Doe",
"email": "[email protected]",
"phone": "123456789"
},
{
"id": "c548",
"name": "Mr Adam Shmitz",
"email": "[email protected]",
"phone": "987654321"
},
{
"id": "64d5",
"name": "Mouhamadou Awalou",
"email": "[email protected]",
"phone": "741852963"
}
]
}
Binary file modified Angular-JS-Projects/Advanced/Contact-Manager/images/image01.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Angular-JS-Projects/Advanced/Contact-Manager/images/image02.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Angular-JS-Projects/Advanced/Contact-Manager/images/image03.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Angular-JS-Projects/Advanced/Contact-Manager/images/image04.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Angular-JS-Projects/Advanced/Contact-Manager/images/image05.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading