diff options
| author | Tyler Ferrari <69283684+Sowgro@users.noreply.github.com> | 2025-03-31 20:19:44 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-31 20:19:44 -0400 | 
| commit | b7539414ac6aa8efd423a3a9a0a2b5586757e19c (patch) | |
| tree | 39a21dc367d3891c53e849f5e1ce81eaebc0fd21 /ufund-ui/src/app/components/cupboard/cupboard.component.html | |
| parent | 459c716d5429c040ac25435aab93f896f2fd79c3 (diff) | |
| parent | a2e1329a510375fdada021c3d6a2f631a9c162ee (diff) | |
| download | JellySolutions-b7539414ac6aa8efd423a3a9a0a2b5586757e19c.tar.gz JellySolutions-b7539414ac6aa8efd423a3a9a0a2b5586757e19c.tar.bz2 JellySolutions-b7539414ac6aa8efd423a3a9a0a2b5586757e19c.zip  | |
Merge pull request #21 from RIT-SWEN-261-02/need-description
Need description and image support
Diffstat (limited to 'ufund-ui/src/app/components/cupboard/cupboard.component.html')
| -rw-r--r-- | ufund-ui/src/app/components/cupboard/cupboard.component.html | 9 | 
1 files changed, 8 insertions, 1 deletions
diff --git a/ufund-ui/src/app/components/cupboard/cupboard.component.html b/ufund-ui/src/app/components/cupboard/cupboard.component.html index 25b88ba..855bd7e 100644 --- a/ufund-ui/src/app/components/cupboard/cupboard.component.html +++ b/ufund-ui/src/app/components/cupboard/cupboard.component.html @@ -13,6 +13,8 @@          <form #cupboardForm="ngForm" (ngSubmit)="submit(cupboardForm.value)">              <label>Name:</label><br>              <input type="text" name="name" ngModel><br> +            <label>Image:</label><br> +            <input type="text" name="image" ngModel><br>              <label>Location:</label><br>              <input type="text" name="location" ngModel><br>              <label>Max Goal:</label><br> @@ -24,6 +26,8 @@              <label>Physical</label><br>              <input type="checkbox" name="urgent" value="false" ngModel>              <label>Urgent</label><br> +            <label>Description</label> +            <textarea name="description" [(ngModel)]="selectedNeed.description"></textarea><br>              <input type="submit" value="Submit">          </form> @@ -35,6 +39,7 @@          <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> @@ -45,8 +50,10 @@              <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>          <span *ngIf="statusText">{{statusText | async}}</span>  | 
