You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

28 lines
1.0 KiB

{% extends "Base.html" %}
{% block content %}
<main class="conteiner">
<div class="row">
<div class="col-md-4 offset-md-4 mt-5">
<form action="/signin/" method="POST" class="card card-body">
<h1 class="text-center">Login</h1>
{% csrf_token %}
<div class="mb-3">
<label for="username"> Usuario:</label>
<input type="text" name="username" id="username"
class="form-control" placeholder="Escribe tu usuario">
</div>
<div class="mb-3">
<label for="password"> Contraseña:</label>
<input type="password" name="password" id="password"
class="form-control" placeholder="escribe tu contraseña">
</div>
<button class="btn btn-primary"> Signin </button>
</form>
</div>
</div>
</main>
{% endblock %}