Skip to content

Instantly share code, notes, and snippets.

@NandoKstroNet
Last active September 21, 2025 15:39
Show Gist options
  • Save NandoKstroNet/5230edf3394a2f127d27aa6b0afeb7c7 to your computer and use it in GitHub Desktop.
Save NandoKstroNet/5230edf3394a2f127d27aa6b0afeb7c7 to your computer and use it in GitHub Desktop.
Sessao 4 - Laravel Primeiros Passos: https://codeexperts.com.br
<div class="w-full h-full absolute flex items-center justify-center">
<div class="max-w-3xl rounded border border-gray-300 p-4 shadow">
<div class="w-96 text-center">
<h2 class="text-xl font-bold mb-6">Acessar Meus Eventos</h2>
</div>
<form action="">
<div class="w-96 mb-6">
<label for="email" class="block mb-2">E-mail</label>
<input
type="email"
name="email"
class="w-full rounded outline-none border border-gray-300 p-2 focus:border-gray-900 focus:ring transition duration-300 ease-in-out"
id="email"
placeholder="Seu email..."
value="{{old('email')}}"
/>
</div>
<div class="w-96 mb-6">
<label for="password" class="block mb-2">Senha</label>
<input
type="password"
name="password"
class="w-full rounded outline-none border border-gray-300 p-2 focus:border-gray-900 focus:ring transition duration-300 ease-in-out"
id="password"
placeholder="Sua senha..."
/>
</div>
<button
class="px-4 py-2 rounded border border-green-900 bg-green-600 hover:bg-green-900 text-white font-bold transition duration-300 ease-in-out"
>
Acessar
</button>
</form>
</div>
</div>
<div class="w-full mb-6 flex gap-x-4">
<input type="checkbox" name="rememberme" id="rememberme" class="p-2 rounded border border-gray-900">
<label for="rememberme" class="text-white">Lembrar de mim</label>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment