Skip to content

Instantly share code, notes, and snippets.

@NandoKstroNet
Created April 6, 2023 17:25
Show Gist options
  • Save NandoKstroNet/73ebd6d75efc52b2188b479d712411ba to your computer and use it in GitHub Desktop.
Save NandoKstroNet/73ebd6d75efc52b2188b479d712411ba to your computer and use it in GitHub Desktop.
Camada do Template HTML do Componente VueJS ProductCreateView em https://codeexperts.com.br
<div id="header-content" class="block w-full py-4 border-b border-gray-300">
<h2 class="text-xl font-bold">Criar Produto</h2>
</div>
<div class="block w-full border-b pb-10 border-gray-300 py-10">
<form action="">
<div class="w-full flex gap-4">
<div class="w-1/2 block mb-6">
<label class="block mb-2">Nome Produto</label>
<input
type="text"
class="w-full rounded shadow border border-gray-300 focus:border-gray-400 focus:shadow-lg outline-none p-2 transition ease-in-ou duration-300"
/>
</div>
<div class="w-1/2 block mb-6">
<label class="block mb-2">Descrição</label>
<input
type="text"
class="w-full rounded shadow border border-gray-300 focus:border-gray-400 focus:shadow-lg outline-none p-2 transition ease-in-ou duration-300"
/>
</div>
</div>
<div class="w-full flex gap-4">
<div class="w-1/2 block mb-6">
<label class="block mb-2">Preço</label>
<input
type="text"
class="w-full rounded shadow border border-gray-300 focus:border-gray-400 focus:shadow-lg outline-none p-2 transition ease-in-ou duration-300"
/>
</div>
</div>
<div class="w-full flex justify-end">
<button
class="px-4 py-2 rounded bg-green-600 hover:bg-green-900 text-white font-bold text-xl shadow transition ease-in-out duration-300"
>
Criar Produto
</button>
</div>
</form>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment