Prześlij pliki do 'templates'
This commit is contained in:
parent
761f5a4a29
commit
f3e832a44e
@ -10,10 +10,26 @@
|
||||
<a href="/">
|
||||
<img id="logo" src= {{ url_for('static', filename='images/logo.png') }} />
|
||||
</a>
|
||||
<form>
|
||||
<input id="searchBox" type="text" name="searchQuery">
|
||||
<input id="searchButton" type="submit" value="Search">
|
||||
</form>
|
||||
|
||||
<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 id="kart">
|
||||
<a class="link" href="/koszyk">
|
||||
@ -29,7 +45,6 @@
|
||||
<div class="dropdown">
|
||||
<button class="dropbtn">Cześć, <br>{{firstName}}</button>
|
||||
<div class="dropdown-content">
|
||||
<a href="/account/orders">Twoje zamówienie</a>
|
||||
<a href="/account/profile">Twój Profil</a>
|
||||
<hr>
|
||||
<a href="/logout">Wyloguj się</a>
|
||||
@ -52,13 +67,13 @@
|
||||
<a href="/removeFromkoszyk?productId={{row[0]}}">Usuń</a>
|
||||
</div>
|
||||
<div id="itemPrice">
|
||||
${{row[2]}}
|
||||
{{row[2]}}zł
|
||||
</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
<hr id="seperator">
|
||||
<div id="total">
|
||||
<span id="subtotal">Cena całkowita</span> : ${{totalPrice}}
|
||||
<span id="subtotal">Cena całkowita</span> : {{totalPrice}}zł
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -1,8 +1,35 @@
|
||||
<html>
|
||||
<head>
|
||||
<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>
|
||||
<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>
|
||||
<form action="/login" method="POST">
|
||||
<p>Email: <input type="text" name="email"></p>
|
||||
|
@ -10,10 +10,26 @@
|
||||
<a href="/">
|
||||
<img id="logo" src= {{ url_for('static', filename='images/logo.png') }} />
|
||||
</a>
|
||||
<form>
|
||||
<input id="searchBox" type="text" name="searchQuery">
|
||||
<input id="searchButton" type="submit" value="Search">
|
||||
</form>
|
||||
|
||||
<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 id="kart">
|
||||
<a class="link" href="/koszyk">
|
||||
@ -29,7 +45,6 @@
|
||||
<div class="dropdown">
|
||||
<button class="dropbtn">Cześć, <br>{{firstName}}</button>
|
||||
<div class="dropdown-content">
|
||||
<a href="/account/orders">Twoje zamówienie</a>
|
||||
<a href="/account/profile">Twój Profil</a>
|
||||
<hr>
|
||||
<a href="/logout">Wyloguj się</a>
|
||||
@ -54,7 +69,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Cena</td>
|
||||
<td>${{data[2]}}</td>
|
||||
<td>{{data[2]}}zł</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Zbiór</td>
|
||||
|
@ -10,10 +10,26 @@
|
||||
<a href="/">
|
||||
<img id="logo" src= {{ url_for('static', filename='images/logo.png') }} />
|
||||
</a>
|
||||
<form>
|
||||
<input id="searchBox" type="text" name="searchQuery">
|
||||
<input id="searchButton" type="submit" value="Search">
|
||||
</form>
|
||||
|
||||
<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 id="kart">
|
||||
<a class="link" href="/koszyk">
|
||||
@ -29,7 +45,6 @@
|
||||
<div class="dropdown">
|
||||
<button class="dropbtn">Cześć, <br>{{firstName}}</button>
|
||||
<div class="dropdown-content">
|
||||
<a href="/account/orders">Twoje zamówienie</a>
|
||||
<a href="/account/profile">Twój Profil</a>
|
||||
<hr>
|
||||
<a href="/logout">Wyloguj się</a>
|
||||
|
@ -1,10 +1,37 @@
|
||||
<html>
|
||||
<head>
|
||||
<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>
|
||||
</head>
|
||||
<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()">
|
||||
<p>Email: <input type="email" name="email"></p>
|
||||
|
||||
@ -22,7 +49,7 @@
|
||||
<p>Kraj: <input type="text" name="country"></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>
|
||||
</form>
|
||||
|
Loading…
Reference in New Issue
Block a user