diff --git a/templates/koszyk.html b/templates/koszyk.html new file mode 100644 index 0000000..198dad0 --- /dev/null +++ b/templates/koszyk.html @@ -0,0 +1,67 @@ + + + +Twój koszyk + + + + +
+ + + +
+ + +
+ +
+ + + {{noOfItems}} + +
+ {% if not loggedIn %} +
+ Zaloguj się +
+ {% else %} + + {% endif %} +
+
+

Twój koszyk

+
+ {% for row in products %} +
+
+
+ +
+
+ {{row[1]}}
+ In stock
+ Usuń +
+
+ ${{row[2]}} +
+
+ {% endfor %} +
+
+ Cena całkowita : ${{totalPrice}} +
+
+
+Przejdź do kasy + + diff --git a/templates/login.html b/templates/login.html new file mode 100644 index 0000000..3ed7b7c --- /dev/null +++ b/templates/login.html @@ -0,0 +1,15 @@ + + + First flask app + + +

{{Błąd}}

+
+

Email:

+

Hasło:

+

+ Zarejestruj się tu +
+ + + diff --git a/templates/productDescription.html b/templates/productDescription.html new file mode 100644 index 0000000..c065140 --- /dev/null +++ b/templates/productDescription.html @@ -0,0 +1,73 @@ + + + +Opis produktu + + + + +
+ + + +
+ + +
+ +
+ + + {{noOfItems}} + +
+ {% if not loggedIn %} +
+ Zaloguj się +
+ {% else %} + + {% endif %} +
+
+
+

{{data[1]}}

+
+
+ +
+ +
+

Detale

+ + + + + + + + + + + + + +
Nazwa{{data[1]}}
Cena${{data[2]}}
Zbiór{{data[5]}}
+

Opis

+

{{data[3]}}

+
+
+ Dodaj do koszyka +
+
+ + + diff --git a/templates/profileHome.html b/templates/profileHome.html new file mode 100644 index 0000000..88ff37f --- /dev/null +++ b/templates/profileHome.html @@ -0,0 +1,46 @@ + + + +Profile Home + + + + +
+ + + +
+ + +
+ +
+ + + {{noOfItems}} + +
+ {% if not loggedIn %} +
+ Zaloguj się +
+ {% else %} + + {% endif %} +
+ +
+ Edytuj Profil
+ Zmień hasło +
+ + \ No newline at end of file diff --git a/templates/register.html b/templates/register.html new file mode 100644 index 0000000..58c1327 --- /dev/null +++ b/templates/register.html @@ -0,0 +1,30 @@ + + +Rejestracja + + + +
+

Email:

+ +

Hasło:

+ +

Powtórz Hasło:

+ +

Imię:

+

Nazwisko:

+

Adres Line 1:

+

Adres Line 2:

+

Kod pocztowy:

+

Miasto:

+

Ulica:

+

Kraj:

+

Numer telefonu:

+ +

+ + Zaloguj się tutaj +
+ + \ No newline at end of file