commit cc1c15559e7e5c9e4e776d48bb6e8c22d7cc9afc Author: Vladimirs Moriļovs Date: Tue May 21 17:54:46 2024 +0000 Upload files to "/" diff --git a/about.html b/about.html new file mode 100644 index 0000000..1591133 --- /dev/null +++ b/about.html @@ -0,0 +1,27 @@ +{% extends "base.html" %} +{% block title %}About{% endblock %} +{% block content %} + +
+

About Us

+ +

Our mission and team

+

LinguaPro was founded with one goal - to make learning foreign languages accessible and fun for everyone. We believe that knowledge of languages opens up new horizons and opportunities, helping people better understand each other.

+

Our Mission:

We strive to provide high quality education that inspires and motivates our students to achieve their goals. +

+

Our team:

+
+

Alexey Ivanov – Founder and CEO

+

Alexey is an experienced linguist with more than 15 years of teaching experience. He has developed many courses and programs that have helped thousands of students master new languages.

+
+
+

Maria Petrova – Chief Methodologist

+

Maria is responsible for the development of educational materials and methods. She holds a PhD in Philology and is a recognized expert in the field of language education.

+
+
+

John Smith - CTO

+

John is responsible for the technical side of the platform. Thanks to his experience and knowledge, our website works without interruptions and provides users with the most convenient interface.

+
+

Our team is united by a common passion for languages and a desire to share our knowledge with the world.

+
+{% endblock %} diff --git a/base.html b/base.html new file mode 100644 index 0000000..850e7ec --- /dev/null +++ b/base.html @@ -0,0 +1,55 @@ + + + + + + + + + + + + {% block title %}{% endblock %} + + + +
+ {% block content %}{% endblock %} +
+ + + + \ No newline at end of file diff --git a/contact.html b/contact.html new file mode 100644 index 0000000..c29934f --- /dev/null +++ b/contact.html @@ -0,0 +1,21 @@ +{% extends "base.html" %} +{% block title %}Contact{% endblock %} +{% block content %} + +

Contact Us

+

This is the contact page.

+ + +{% endblock %} diff --git a/data.html b/data.html new file mode 100644 index 0000000..b72c35b --- /dev/null +++ b/data.html @@ -0,0 +1,48 @@ +{% extends "base.html" %} +{% block title %}Data{% endblock %} +{% block content %} + +
+

Data

+ + + + + + + + + + + {% for row in data %} + + + {% for element in row %} + + {% endfor %} + + {% endfor %} + +
#NameAgeCity
{{ loop.index }}{{ element }}
+
+
+
+ + +
+
+ + +
+
+ + +
+
+ +
+
+
+
+{% endblock %} + diff --git a/error_login.html b/error_login.html new file mode 100644 index 0000000..58dda22 --- /dev/null +++ b/error_login.html @@ -0,0 +1,9 @@ +{% extends "base.html" %} +{% block title %}Succes{% endblock %} +{% block content %} + +

ERROR ;[

+ +{% endblock %} \ No newline at end of file