diff options
Diffstat (limited to 'src/components/Form/Items/RegisterItemForm.js')
-rw-r--r-- | src/components/Form/Items/RegisterItemForm.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/Form/Items/RegisterItemForm.js b/src/components/Form/Items/RegisterItemForm.js index 140de29..b57db9f 100644 --- a/src/components/Form/Items/RegisterItemForm.js +++ b/src/components/Form/Items/RegisterItemForm.js @@ -35,7 +35,7 @@ const RegisterItemForm = (props) => { // TODO: show confirmation before being invisible axios.post( - `/api/items/` + `/api/items/register/` + `?model=${newItemNameValue}` + `&desc=${newItemDescValue}` + `&price=${newItemPriceValue}` @@ -59,7 +59,7 @@ const RegisterItemForm = (props) => { <div className={"formContainer"}> <form className={"floatingForm"} onSubmit={postForm}> <div className={"twoPaneForm"}> - <div className={"widePane"}> + <div className={"widePane formPane"}> <label> Item/Service: <input className={"wideInputBox"} type="text" value={newItemNameValue} onChange={ (event) => { @@ -77,7 +77,7 @@ const RegisterItemForm = (props) => { </label> </div> - <div className={"widePane"}> + <div className={"widePane formPane"}> <label> Price: <input className={"smallInputBox"} type="number" min="0.00" step="0.001" value={newItemPriceValue} onChange={ (event) => { |