Prześlij pliki do 'templates'

This commit is contained in:
Sławomir Łopata 2023-02-04 04:09:10 +01:00
parent 761f5a4a29
commit f3e832a44e
5 changed files with 118 additions and 19 deletions

View File

@ -10,10 +10,26 @@
<a href="/"> <a href="/">
<img id="logo" src= {{ url_for('static', filename='images/logo.png') }} /> <img id="logo" src= {{ url_for('static', filename='images/logo.png') }} />
</a> </a>
<form>
<input id="searchBox" type="text" name="searchQuery"> <a href="/displayCategory?categoryId=1">
<input id="searchButton" type="submit" value="Search"> <img id="mężczyzna" src= {{ url_for('static', filename='images/mężczyzna.png') }} />
</form> </a>
<a href="/displayCategory?categoryId=2">
<img id="kobieta" src= {{ url_for('static', filename='images/kobieta.png') }} />
</a>
<a href="/displayCategory?categoryId=3">
<img id="akcesoria" src= {{ url_for('static', filename='images/akcesoria.png') }} />
</a>
<a href="/displayCategory?categoryId=4">
<img id="biżuteria" src= {{ url_for('static', filename='images/biżuteria.png') }} />
</a>
<a href="/displayCategory?categoryId=5">
<img id="buty" src= {{ url_for('static', filename='images/buty.png') }} />
</a>
<div id="kart"> <div id="kart">
<a class="link" href="/koszyk"> <a class="link" href="/koszyk">
@ -29,7 +45,6 @@
<div class="dropdown"> <div class="dropdown">
<button class="dropbtn">Cześć, <br>{{firstName}}</button> <button class="dropbtn">Cześć, <br>{{firstName}}</button>
<div class="dropdown-content"> <div class="dropdown-content">
<a href="/account/orders">Twoje zamówienie</a>
<a href="/account/profile">Twój Profil</a> <a href="/account/profile">Twój Profil</a>
<hr> <hr>
<a href="/logout">Wyloguj się</a> <a href="/logout">Wyloguj się</a>
@ -52,13 +67,13 @@
<a href="/removeFromkoszyk?productId={{row[0]}}">Usuń</a> <a href="/removeFromkoszyk?productId={{row[0]}}">Usuń</a>
</div> </div>
<div id="itemPrice"> <div id="itemPrice">
${{row[2]}} {{row[2]}}
</div> </div>
</div> </div>
{% endfor %} {% endfor %}
<hr id="seperator"> <hr id="seperator">
<div id="total"> <div id="total">
<span id="subtotal">Cena całkowita</span> : ${{totalPrice}} <span id="subtotal">Cena całkowita</span> : {{totalPrice}}
</div> </div>
</div> </div>
</div> </div>

View File

@ -1,8 +1,35 @@
<html> <html>
<head> <head>
<title> First flask app </title> <title> First flask app </title>
<link rel="stylesheet" href={{ url_for('static', filename='css/home.css') }} />
<link rel="stylesheet" href={{ url_for('static', filename='css/topStyle.css') }} />
</head> </head>
<body> <body>
<div id="title">
<a href="/">
<img id="logo" src= {{ url_for('static', filename='images/logo.png') }} />
</a>
<a href="/displayCategory?categoryId=1">
<img id="mężczyzna" src= {{ url_for('static', filename='images/mężczyzna.png') }} />
</a>
<a href="/displayCategory?categoryId=2">
<img id="kobieta" src= {{ url_for('static', filename='images/kobieta.png') }} />
</a>
<a href="/displayCategory?categoryId=3">
<img id="akcesoria" src= {{ url_for('static', filename='images/akcesoria.png') }} />
</a>
<a href="/displayCategory?categoryId=4">
<img id="biżuteria" src= {{ url_for('static', filename='images/biżuteria.png') }} />
</a>
<a href="/displayCategory?categoryId=5">
<img id="buty" src= {{ url_for('static', filename='images/buty.png') }} />
</a>
</div>
<p> {{Błąd}} </p> <p> {{Błąd}} </p>
<form action="/login" method="POST"> <form action="/login" method="POST">
<p>Email: <input type="text" name="email"></p> <p>Email: <input type="text" name="email"></p>

View File

@ -10,10 +10,26 @@
<a href="/"> <a href="/">
<img id="logo" src= {{ url_for('static', filename='images/logo.png') }} /> <img id="logo" src= {{ url_for('static', filename='images/logo.png') }} />
</a> </a>
<form>
<input id="searchBox" type="text" name="searchQuery"> <a href="/displayCategory?categoryId=1">
<input id="searchButton" type="submit" value="Search"> <img id="mężczyzna" src= {{ url_for('static', filename='images/mężczyzna.png') }} />
</form> </a>
<a href="/displayCategory?categoryId=2">
<img id="kobieta" src= {{ url_for('static', filename='images/kobieta.png') }} />
</a>
<a href="/displayCategory?categoryId=3">
<img id="akcesoria" src= {{ url_for('static', filename='images/akcesoria.png') }} />
</a>
<a href="/displayCategory?categoryId=4">
<img id="biżuteria" src= {{ url_for('static', filename='images/biżuteria.png') }} />
</a>
<a href="/displayCategory?categoryId=5">
<img id="buty" src= {{ url_for('static', filename='images/buty.png') }} />
</a>
<div id="kart"> <div id="kart">
<a class="link" href="/koszyk"> <a class="link" href="/koszyk">
@ -29,7 +45,6 @@
<div class="dropdown"> <div class="dropdown">
<button class="dropbtn">Cześć, <br>{{firstName}}</button> <button class="dropbtn">Cześć, <br>{{firstName}}</button>
<div class="dropdown-content"> <div class="dropdown-content">
<a href="/account/orders">Twoje zamówienie</a>
<a href="/account/profile">Twój Profil</a> <a href="/account/profile">Twój Profil</a>
<hr> <hr>
<a href="/logout">Wyloguj się</a> <a href="/logout">Wyloguj się</a>
@ -54,7 +69,7 @@
</tr> </tr>
<tr> <tr>
<td>Cena</td> <td>Cena</td>
<td>${{data[2]}}</td> <td>{{data[2]}}</td>
</tr> </tr>
<tr> <tr>
<td>Zbiór</td> <td>Zbiór</td>

View File

@ -10,10 +10,26 @@
<a href="/"> <a href="/">
<img id="logo" src= {{ url_for('static', filename='images/logo.png') }} /> <img id="logo" src= {{ url_for('static', filename='images/logo.png') }} />
</a> </a>
<form>
<input id="searchBox" type="text" name="searchQuery"> <a href="/displayCategory?categoryId=1">
<input id="searchButton" type="submit" value="Search"> <img id="mężczyzna" src= {{ url_for('static', filename='images/mężczyzna.png') }} />
</form> </a>
<a href="/displayCategory?categoryId=2">
<img id="kobieta" src= {{ url_for('static', filename='images/kobieta.png') }} />
</a>
<a href="/displayCategory?categoryId=3">
<img id="akcesoria" src= {{ url_for('static', filename='images/akcesoria.png') }} />
</a>
<a href="/displayCategory?categoryId=4">
<img id="biżuteria" src= {{ url_for('static', filename='images/biżuteria.png') }} />
</a>
<a href="/displayCategory?categoryId=5">
<img id="buty" src= {{ url_for('static', filename='images/buty.png') }} />
</a>
<div id="kart"> <div id="kart">
<a class="link" href="/koszyk"> <a class="link" href="/koszyk">
@ -29,7 +45,6 @@
<div class="dropdown"> <div class="dropdown">
<button class="dropbtn">Cześć, <br>{{firstName}}</button> <button class="dropbtn">Cześć, <br>{{firstName}}</button>
<div class="dropdown-content"> <div class="dropdown-content">
<a href="/account/orders">Twoje zamówienie</a>
<a href="/account/profile">Twój Profil</a> <a href="/account/profile">Twój Profil</a>
<hr> <hr>
<a href="/logout">Wyloguj się</a> <a href="/logout">Wyloguj się</a>

View File

@ -1,10 +1,37 @@
<html> <html>
<head> <head>
<title>Rejestracja</title> <title>Rejestracja</title>
<link rel="stylesheet" href={{ url_for('static', filename='css/home.css') }} />
<link rel="stylesheet" href={{ url_for('static', filename='css/topStyle.css') }} />
<script type="text/javascript" src="{{ url_for('static', filename = 'js/validateForm.js') }}"> <script type="text/javascript" src="{{ url_for('static', filename = 'js/validateForm.js') }}">
</script> </script>
</head> </head>
<body> <body>
<div id="title">
<a href="/">
<img id="logo" src= {{ url_for('static', filename='images/logo.png') }} />
</a>
<a href="/displayCategory?categoryId=1">
<img id="mężczyzna" src= {{ url_for('static', filename='images/mężczyzna.png') }} />
</a>
<a href="/displayCategory?categoryId=2">
<img id="kobieta" src= {{ url_for('static', filename='images/kobieta.png') }} />
</a>
<a href="/displayCategory?categoryId=3">
<img id="akcesoria" src= {{ url_for('static', filename='images/akcesoria.png') }} />
</a>
<a href="/displayCategory?categoryId=4">
<img id="biżuteria" src= {{ url_for('static', filename='images/biżuteria.png') }} />
</a>
<a href="/displayCategory?categoryId=5">
<img id="buty" src= {{ url_for('static', filename='images/buty.png') }} />
</a>
</div>
<form action="/register" method="POST" onsubmit="return validate()"> <form action="/register" method="POST" onsubmit="return validate()">
<p>Email: <input type="email" name="email"></p> <p>Email: <input type="email" name="email"></p>
@ -22,7 +49,7 @@
<p>Kraj: <input type="text" name="country"></p> <p>Kraj: <input type="text" name="country"></p>
<p>Numer telefonu: <input type="text" name="phone"></p> <p>Numer telefonu: <input type="text" name="phone"></p>
<p><input type="submit" value="Register"></p> <p><input type="submit" value="Rejestracja"></p>
<a href="/loginForm">Zaloguj się tutaj</a> <a href="/loginForm">Zaloguj się tutaj</a>
</form> </form>