From 2920406ed53b02b912af25c2a2cef824a68a4df1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladimirs=20Mori=C4=BCovs?= Date: Tue, 21 May 2024 17:55:00 +0000 Subject: [PATCH] Upload files to "/" --- error_register.html | 9 +++++++++ index.html | 38 ++++++++++++++++++++++++++++++++++++++ login.html | 17 +++++++++++++++++ profile.html | 9 +++++++++ register.html | 21 +++++++++++++++++++++ 5 files changed, 94 insertions(+) create mode 100644 error_register.html create mode 100644 index.html create mode 100644 login.html create mode 100644 profile.html create mode 100644 register.html diff --git a/error_register.html b/error_register.html new file mode 100644 index 0000000..bf7f12a --- /dev/null +++ b/error_register.html @@ -0,0 +1,9 @@ +{% extends "base.html" %} +{% block title %}Succes{% endblock %} +{% block content %} + +

ERROR ;[

+ +{% endblock %} \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..2b55c50 --- /dev/null +++ b/index.html @@ -0,0 +1,38 @@ +{% extends "base.html" %} +{% block title %}Home{% endblock %} +{% block content %} + +

Welcome to LinguaPro

+ +

LinguaPro - your online platform for learning foreign languages! We offer interactive courses, live lessons with native speakers, and a variety of resources for effective and fun learning. Our programs are suitable for all levels - from beginners to advanced.

+

Why choose LinguaPro ? +

Interactive courses: Our courses are developed by leading linguists and teachers. They include videos, audio lessons and practical exercises.

+

Live communication: You will have the opportunity to communicate with native speakers, which will allow you to immerse yourself in the language environment and improve your skills.

+

Flexibility: You can study anytime, anywhere, adapting the learning process to your schedule.

+

Community Support: Join our community of students, share experiences and make new friends.

+

Start your journey into the world of languages with LinguaPro today!

+ + + + +{% endblock %} diff --git a/login.html b/login.html new file mode 100644 index 0000000..6df68a0 --- /dev/null +++ b/login.html @@ -0,0 +1,17 @@ +{% extends "base.html" %} +{% block title %}Login{% endblock %} +{% block content %} + +

Login

+
+
+ + +
+
+ + +
+ +
+{% endblock %} \ No newline at end of file diff --git a/profile.html b/profile.html new file mode 100644 index 0000000..a090526 --- /dev/null +++ b/profile.html @@ -0,0 +1,9 @@ +{% extends "base.html" %} +{% block title %}Account{% endblock %} +{% block content %} + +

Account

+

Name: {{ name }}

+

Email: {{ email }}

+

Password: {{ password }}

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

Register

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