21 lines
400 B
Plaintext
21 lines
400 B
Plaintext
{% extends "base" %}
|
|
|
|
{% block extracss %}
|
|
<style>
|
|
.container {
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
{% endblock extracss %}
|
|
|
|
{% block content %}
|
|
<form action="" method="post">
|
|
<h2>Usuario</h2>
|
|
<input name="username" type="text" value=""/>
|
|
<h2>Contraseña</h2>
|
|
<input name="password" type="password" value=""/>
|
|
<h2></h2>
|
|
<button>Inicia sesión</button>
|
|
</form>
|
|
{% endblock content %}
|