diff options
author | benal01 <bja4245@rit.edu> | 2025-03-17 21:55:57 -0400 |
---|---|---|
committer | benal01 <bja4245@rit.edu> | 2025-03-17 21:55:57 -0400 |
commit | 3f8a523dbbfcbfed875adc383d91ef6143b651cb (patch) | |
tree | 5b05c242f7468832d36f888ad8e4fa554887de5b /ufund-ui/src/app/components/need-list/need-list.component.html | |
parent | 13c0042f9c6e130a061cbb448cff6bcd9e8ab5e6 (diff) | |
parent | d1b7b81cbedc673cf6f52ac5745438f95083b78e (diff) | |
download | JellySolutions-3f8a523dbbfcbfed875adc383d91ef6143b651cb.tar.gz JellySolutions-3f8a523dbbfcbfed875adc383d91ef6143b651cb.tar.bz2 JellySolutions-3f8a523dbbfcbfed875adc383d91ef6143b651cb.zip |
Merge branch 'main' of https://github.com/RIT-SWEN-261-02/team-project-2245-swen-261-02-2b-jellysolutions
Diffstat (limited to 'ufund-ui/src/app/components/need-list/need-list.component.html')
-rw-r--r-- | ufund-ui/src/app/components/need-list/need-list.component.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/ufund-ui/src/app/components/need-list/need-list.component.html b/ufund-ui/src/app/components/need-list/need-list.component.html index 6e48d96..07f6735 100644 --- a/ufund-ui/src/app/components/need-list/need-list.component.html +++ b/ufund-ui/src/app/components/need-list/need-list.component.html @@ -1,6 +1,26 @@ <h1>Needs List</h1> +<input id="search-button" type="button" value="Search" (click)="open()"> +<div id="search-form"> + <form #searchForm="ngForm"> + <label>Search:</label><br> + <input type="text" name="search" (input)="search(searchForm.value)" ngModel> + <input type="button" value="Clear" (click)="searchForm.reset()"> <br> + </form> + <button (click)="close()">Close</button> + <div> + <h2 id="search-status">Search Results:</h2> + <div *ngFor="let need of searchResults"> + <a routerLink="/need/{{need.id}}"> + {{need.name}} + </a> + <button (click)="delete(need.id)" *ngIf="isManager()">Delete</button> + </div> + </div> +</div> + <li *ngFor="let need of needs"> <a routerLink="/need/{{need.id}}"> {{need.name}} </a> + <button (click)="delete(need.id)" *ngIf="isManager()">Delete</button> </li> |