diff options
Diffstat (limited to 'ustayml/templates/auth')
| -rw-r--r-- | ustayml/templates/auth/login.html | 8 | ||||
| -rw-r--r-- | ustayml/templates/auth/register.html | 10 |
2 files changed, 9 insertions, 9 deletions
diff --git a/ustayml/templates/auth/login.html b/ustayml/templates/auth/login.html index 45acd7f..9560ba5 100644 --- a/ustayml/templates/auth/login.html +++ b/ustayml/templates/auth/login.html @@ -1,15 +1,15 @@ {% extends 'base.html' %} {% block header %} - <h1>{% block title %}Log In{% endblock %}</h1> + <h1>{% block title %}Ingresar{% endblock %}</h1> {% endblock %} {% block content %} <form class="simple-form" method="post"> - <label for="username">Username</label> + <label for="username">Usuario</label> <input name="username" id="username" required> - <label for="password">Password</label> + <label for="password">ContraseƱa</label> <input type="password" name="password" id="password" required> - <input type="submit" value="Log In"> + <input type="submit" value="Ingresar"> </form> {% endblock %}
\ No newline at end of file diff --git a/ustayml/templates/auth/register.html b/ustayml/templates/auth/register.html index a3c73cc..ef1264d 100644 --- a/ustayml/templates/auth/register.html +++ b/ustayml/templates/auth/register.html @@ -1,15 +1,15 @@ {% extends 'base.html' %} {% block header %} - <h1>{% block title %}Register{% endblock %}</h1> + <h1>{% block title %}Registrarse{% endblock %}</h1> {% endblock %} {% block content %} - <form method="post"> - <label for="username">Username</label> + <form class="simple-form" method="post"> + <label for="username">Usuario</label> <input name="username" id="username" required> - <label for="password">Password</label> + <label for="password">ContraseƱa</label> <input type="password" name="password" id="password" required> - <input type="submit" value="Register"> + <input type="submit" value="Registerse"> </form> {% endblock %}
\ No newline at end of file |
