From 5e4487a99f357c08662ed5dabd0c7f21664c15eb Mon Sep 17 00:00:00 2001 From: Mitsuo Tokumori Date: Mon, 13 Nov 2023 12:42:36 -0500 Subject: Add site index and sample dashboard BP --- ustayml/templates/auth/login.html | 8 ++--- ustayml/templates/auth/register.html | 10 +++---- ustayml/templates/base.html | 2 +- ustayml/templates/dashboard/index.html | 51 ++++++++++++++++++++++++++++++++ ustayml/templates/index.html | 15 ++++++++++ ustayml/templates/load_data/index.html | 9 +++--- ustayml/templates/load_data/success.html | 2 +- 7 files changed, 82 insertions(+), 15 deletions(-) create mode 100644 ustayml/templates/dashboard/index.html create mode 100644 ustayml/templates/index.html (limited to 'ustayml/templates') 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 %} -

{% block title %}Log In{% endblock %}

+

{% block title %}Ingresar{% endblock %}

{% endblock %} {% block content %}
- + - + - +
{% 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 %} -

{% block title %}Register{% endblock %}

+

{% block title %}Registrarse{% endblock %}

{% endblock %} {% block content %} -
- + + - + - +
{% endblock %} \ No newline at end of file diff --git a/ustayml/templates/base.html b/ustayml/templates/base.html index eefbc06..580249a 100644 --- a/ustayml/templates/base.html +++ b/ustayml/templates/base.html @@ -5,7 +5,7 @@