feat(main): Adiciona seção de formulário

This commit is contained in:
Sabrina Miranda 2022-11-09 18:30:11 -03:00
parent 2e572bc7ad
commit 114e4a5be9

View File

@ -15,5 +15,29 @@
</head>
<body>
<main>
<section class="shopping-container">
<h2 class="shopping-title">
Shopping List
</h2>
<form class="shopping-form">
<div class="shopping-form-inputs">
<div class="shopping-form-item-wrapper">
<label class="shopping-form-label" for="item-name">Item Name</label>
<input class="shopping-form-item-input" type="text" name="item-name" id="item-name"/>
</div>
<div class="shopping-form-quantity-wrapper">
<button class="shopping-form-quantity-button shopping-form-decrement-button" type="button"></button>
<input type="text" name="item-quantity" value="1" disabled/>
<button class="shopping-form-quantity-button shopping-form-increment-button" type="button"></button>
</div>
</div>
<button class="shopping-form-submit-button" type="submit">Add to list</button>
</form>
</section>
</main>
</body>
</html>