aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/components/cupboard/cupboard.component.html
blob: b87540e8eefca2ad5caf84e7a57804e88d9cd3d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<h1> Cupboard </h1>
<div id="create-form">
    <h1> Create a new need </h1>
    <form #cupboardForm="ngForm" (ngSubmit)="submit(cupboardForm.value)">
        <label>Name:</label><br>
        <input type="text" name="name" ngModel><br>
        <label>Id:</label><br>
        <input type="number" name="id" ngModel><br>
        <label>Max Goal:</label><br>
        <input type="number" name="maxGoal" ngModel><br>
        <label>Type</label><br>
        <input type="radio" name="type" value="MONETARY" ngModel>
        <label>Monetary</label><br>
        <input type="radio" name="type" value="PHYSICAL" ngModel>
        <label>Physical</label><br>
        <input type="submit" value="Submit"> 
    </form>
</div>


<app-need-list></app-need-list>