aboutsummaryrefslogtreecommitdiff
path: root/ustayml/templates/auth
diff options
context:
space:
mode:
authorMitsuo Tokumori <rtokumori@pucp.edu.pe>2023-11-13 12:42:36 -0500
committerMitsuo Tokumori <rtokumori@pucp.edu.pe>2023-11-13 12:42:36 -0500
commit5e4487a99f357c08662ed5dabd0c7f21664c15eb (patch)
tree3ece23ed5e17cd814d4aafad3defc73b4e204240 /ustayml/templates/auth
parent5a16046eddc753b752c5ab1fdb91595adf588a6b (diff)
Add site index and sample dashboard BP
Diffstat (limited to 'ustayml/templates/auth')
-rw-r--r--ustayml/templates/auth/login.html8
-rw-r--r--ustayml/templates/auth/register.html10
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