diff options
author | benal01 <bja4245@rit.edu> | 2025-03-31 22:15:37 -0400 |
---|---|---|
committer | benal01 <bja4245@rit.edu> | 2025-03-31 22:15:37 -0400 |
commit | 786a6db3f5a22f7bb2cc249731ef654b675c3c86 (patch) | |
tree | e45792d92bf263b59fdfecf8a595cc9b7ff899c7 /ufund-ui/src/app/components/cupboard/cupboard.component.html | |
parent | 4f8ddd385924b3c7c2b36acd28daf658ecc2cb09 (diff) | |
download | JellySolutions-786a6db3f5a22f7bb2cc249731ef654b675c3c86.tar.gz JellySolutions-786a6db3f5a22f7bb2cc249731ef654b675c3c86.tar.bz2 JellySolutions-786a6db3f5a22f7bb2cc249731ef654b675c3c86.zip |
moving functionality to new component
Diffstat (limited to '')
-rw-r--r-- | ufund-ui/src/app/components/cupboard/cupboard.component.html | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/ufund-ui/src/app/components/cupboard/cupboard.component.html b/ufund-ui/src/app/components/cupboard/cupboard.component.html index 6f7799e..e9387a2 100644 --- a/ufund-ui/src/app/components/cupboard/cupboard.component.html +++ b/ufund-ui/src/app/components/cupboard/cupboard.component.html @@ -32,29 +32,6 @@ </form> </div> - <div id="update-form" *ngIf="selectedForm === 'update'"> - <h1> Update Need </h1> - <label>Needs:</label><br> - <form #updateForm="ngForm" (ngSubmit)="update(updateForm.value)"> - <input type="text" name="name" [(ngModel)]="selectedNeed.name"><br> - <input type="text" name="image" [(ngModel)]="selectedNeed.image"><br> - <input type="text" name="location" [(ngModel)]="selectedNeed.location"><br> - <label>Max Goal:</label><br> - <input type="number" name="maxGoal" [(ngModel)]="selectedNeed.maxGoal"><br> - <label>Type</label><br> - <input type="radio" name="type" value="MONETARY" [(ngModel)]="selectedNeed.type"> - <label>Monetary</label><br> - <input type="radio" name="type" value="PHYSICAL" [(ngModel)]="selectedNeed.type"> - <label>Physical</label><br> - <input type="checkbox" name="urgent" [(ngModel)]="selectedNeed.urgent"> - <label>Urgent</label> <br> - <label>Description</label> <br> - <textarea name="description" [(ngModel)]="selectedNeed.description"></textarea><br> - <input type="submit" value="Submit"> - - </form> - - </div> <hr> </div> |