From 43f9d78f8c00e13732b809519f0529ac293fd5ab Mon Sep 17 00:00:00 2001 From: Mitsuo Tokumori Date: Sun, 29 Oct 2023 07:41:04 -0500 Subject: Rename to ustayml (u-stayML) --- ustayml/templates/auth/login.html | 15 +++++++++++++++ ustayml/templates/auth/register.html | 15 +++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 ustayml/templates/auth/login.html create mode 100644 ustayml/templates/auth/register.html (limited to 'ustayml/templates/auth') diff --git a/ustayml/templates/auth/login.html b/ustayml/templates/auth/login.html new file mode 100644 index 0000000..b7dd5dc --- /dev/null +++ b/ustayml/templates/auth/login.html @@ -0,0 +1,15 @@ +{% extends 'base.html' %} + +{% block header %} +

{% block title %}Log In{% 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 new file mode 100644 index 0000000..a3c73cc --- /dev/null +++ b/ustayml/templates/auth/register.html @@ -0,0 +1,15 @@ +{% extends 'base.html' %} + +{% block header %} +

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

+{% endblock %} + +{% block content %} +
+ + + + + +
+{% endblock %} \ No newline at end of file -- cgit v1.2.3