diff options
| author | benal01 <bja4245@rit.edu> | 2025-03-31 10:15:40 -0400 | 
|---|---|---|
| committer | benal01 <bja4245@rit.edu> | 2025-03-31 10:15:40 -0400 | 
| commit | bcdf234066ee277b7436428989d5e0dbf58c2f60 (patch) | |
| tree | 99e072162f454e3b0a7e0e7307ad0e9664574ed7 /ufund-ui/src/app/components/cupboard/cupboard.component.html | |
| parent | 227360990424abe323c44664b1d58d667b89a92f (diff) | |
| download | JellySolutions-bcdf234066ee277b7436428989d5e0dbf58c2f60.tar.gz JellySolutions-bcdf234066ee277b7436428989d5e0dbf58c2f60.tar.bz2 JellySolutions-bcdf234066ee277b7436428989d5e0dbf58c2f60.zip  | |
description textarea for forms
Diffstat (limited to 'ufund-ui/src/app/components/cupboard/cupboard.component.html')
| -rw-r--r-- | ufund-ui/src/app/components/cupboard/cupboard.component.html | 5 | 
1 files changed, 4 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..89d8fbe 100644 --- a/ufund-ui/src/app/components/cupboard/cupboard.component.html +++ b/ufund-ui/src/app/components/cupboard/cupboard.component.html @@ -24,6 +24,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> @@ -46,7 +48,8 @@              <input type="checkbox" name="urgent" [(ngModel)]="selectedNeed.urgent">              <label>Urgent</label> <br>              <input type="submit" value="Submit"> - +            <label>Description</label> +            <textarea name="description" [(ngModel)]="selectedNeed.description"></textarea><br>          </form>          <span *ngIf="statusText">{{statusText | async}}</span>  | 
