diff options
author | benal01 <bja4245@rit.edu> | 2025-02-27 19:17:05 -0500 |
---|---|---|
committer | benal01 <bja4245@rit.edu> | 2025-02-27 19:17:05 -0500 |
commit | df48929a7deb0dda072206ac5c32744dc95f20c5 (patch) | |
tree | c6e3b91dfbec5a339f84b967665ebf3aa8ce9859 /ufund-ui/src/app/components/cupboard/cupboard.component.html | |
parent | f33629005913a2f2d6814c9a8686989278f38bb0 (diff) | |
download | JellySolutions-df48929a7deb0dda072206ac5c32744dc95f20c5.tar.gz JellySolutions-df48929a7deb0dda072206ac5c32744dc95f20c5.tar.bz2 JellySolutions-df48929a7deb0dda072206ac5c32744dc95f20c5.zip |
Need class tests
Diffstat (limited to 'ufund-ui/src/app/components/cupboard/cupboard.component.html')
-rw-r--r-- | ufund-ui/src/app/components/cupboard/cupboard.component.html | 17 |
1 files changed, 16 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 056c167..ad8e60c 100644 --- a/ufund-ui/src/app/components/cupboard/cupboard.component.html +++ b/ufund-ui/src/app/components/cupboard/cupboard.component.html @@ -1,2 +1,17 @@ -<p>cupboard works!</p> +<h1> Cupboard </h1> +<form> + <label for="name">Name:</label><br> + <input #name type="text" name="name"><br> + <label for="id">Id:</label><br> + <input #id type="number" name="id"><br> + <label for="max-goal">Max Goal:</label><br> + <input #maxgoal type="number" name="max-goal"><br> + <label>Type</label><br> + <input id="monetary" type="radio" name="type" value="MONETARY"> + <label for="monetary">Monetary</label><br> + <input #physical type="radio" name="type" value="PHYSICAL"> + <label for="physical">Physical</label><br> +</form> +<button (click)="submit(name.value, id.valueAsNumber, maxgoal.valueAsNumber, physical.value)">Submit</button> + <app-need-list></app-need-list> |