forked from M3-Academy/practice-time-shopping-list
feat(main): Adiciona seção de formulário
This commit is contained in:
parent
2e572bc7ad
commit
114e4a5be9
24
index.html
24
index.html
@ -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>
|
Loading…
Reference in New Issue
Block a user