diff options
Diffstat (limited to '')
| -rw-r--r-- | ufund-ui/src/app/components/cupboard/cupboard.component.html | 24 | 
1 files changed, 24 insertions, 0 deletions
diff --git a/ufund-ui/src/app/components/cupboard/cupboard.component.html b/ufund-ui/src/app/components/cupboard/cupboard.component.html index d9a247d..2749850 100644 --- a/ufund-ui/src/app/components/cupboard/cupboard.component.html +++ b/ufund-ui/src/app/components/cupboard/cupboard.component.html @@ -1,6 +1,7 @@  <h1> Cupboard </h1>  <div id="menu">      <button (click)="opencreate()">Create new Need</button> +    <button (click)="openupdate()">Update existing Need</button>  </div>  <div id="create-form">      <h1> Create a new need </h1> @@ -21,5 +22,28 @@      <button (click)="back()">Close</button>  </div> +<div id="update-form"> +    <h1> Update a need </h1> +    <label>Needs:</label><br> +    <form #updateForm="ngForm" (ngSubmit)="update(updateForm.value)"> +        <div *ngFor="let need of needs"> +            +            <input type="radio" name="id" [value]=need.id [(ngModel)]="selectedNeedId" (change)="populateForm(need)"> +            <label name="template">{{need.name}}</label><br> +        </div> +        <label>Name:</label><br> +        <input type="text" name="name" [(ngModel)]="selectedNeed.name"><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="submit" value="Submit">  +    </form> +    <button (click)="back()">Close</button> +     +</div>  <hr>  <app-need-list></app-need-list>
\ No newline at end of file  | 
