Skip to content

Instantly share code, notes, and snippets.

@NandoKstroNet
Created January 11, 2021 21:20
Show Gist options
  • Save NandoKstroNet/f60f24e1f9919a621f363aa44d2cc98b to your computer and use it in GitHub Desktop.
Save NandoKstroNet/f60f24e1f9919a621f363aa44d2cc98b to your computer and use it in GitHub Desktop.
Trecho do Componente Login.VUE criado no curso Symfony 5 Mastery da Code Experts em http://symfonymastery.com.br
<div class="d-flex justify-content-center align-items-center ">
<div class="col-6 border rounded p-5">
<div class="col-12">
<h2>Meu Painel</h2>
<hr />
</div>
<div class="col-12">
<form action="">
<div class="form-group">
<label>Email</label>
<input
type="text"
class="form-control"
placeholder="Seu email..."
/>
</div>
<div class="form-group">
<label>Senha</label>
<input
type="password"
class="form-control"
placeholder="Sua senha..."
/>
</div>
<div class="col-12">
<button type="submit" class="btn btn-success btn-lg">
Acessar
</button>
</div>
</form>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment