Prześlij pliki do 'templates'
This commit is contained in:
parent
12326b5fb7
commit
761f5a4a29
@ -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>
|
||||||
|
@ -1,6 +1,54 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
|
<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 id="kart">
|
||||||
|
<a class="link" href="/koszyk">
|
||||||
|
<img src={{url_for('static', filename='images/koszyk_zakupowy.png')}} id="koszykIcon" />
|
||||||
|
{{noOfItems}}
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
{% if not loggedIn %}
|
||||||
|
<div id="signInButton">
|
||||||
|
<a class="link" href="/loginForm">Zaloguj się</a>
|
||||||
|
</div>
|
||||||
|
{% else %}
|
||||||
|
<div class="dropdown">
|
||||||
|
<button class="dropbtn">Cześć, <br>{{firstName}}</button>
|
||||||
|
<div class="dropdown-content">
|
||||||
|
<a href="/account/profile">Twój Profil</a>
|
||||||
|
<hr>
|
||||||
|
<a href="/logout">Wyloguj się</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
<title>Zmień hasło</title>
|
<title>Zmień hasło</title>
|
||||||
|
<link rel="stylesheet" href={{ url_for('static', filename='css/editProfile.css') }} />
|
||||||
|
<link rel="stylesheet" href={{ url_for('static', filename='css/topStyle.css') }} />
|
||||||
<script src={{ url_for('static', filename='js/changePassword.js') }}></script>
|
<script src={{ url_for('static', filename='js/changePassword.js') }}></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
@ -10,7 +58,7 @@
|
|||||||
<p>stare hasło: <input type="password" name="oldpassword"></p>
|
<p>stare hasło: <input type="password" name="oldpassword"></p>
|
||||||
<p>nowe hasło: <input type="password" name="newpassword" id="newpassword"></p>
|
<p>nowe hasło: <input type="password" name="newpassword" id="newpassword"></p>
|
||||||
<p>powtórz hasło: <input type="password" name="cpassword" id="cpassword"></p>
|
<p>powtórz hasło: <input type="password" name="cpassword" id="cpassword"></p>
|
||||||
<input type="submit" value="Save">
|
<input type="submit" value="Zapisz">
|
||||||
</form>
|
</form>
|
||||||
<a href="{{ url_for('profileHome') }}">Idż do Profilu</a>
|
<a href="{{ url_for('profileHome') }}">Idż do Profilu</a>
|
||||||
</body>
|
</body>
|
||||||
|
@ -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>
|
||||||
@ -61,7 +76,7 @@
|
|||||||
<tr id="productPrice">
|
<tr id="productPrice">
|
||||||
{% for row in itemData %}
|
{% for row in itemData %}
|
||||||
<td>
|
<td>
|
||||||
${{row[2]}}
|
{{row[2]}}zł
|
||||||
</td>
|
</td>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -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>
|
||||||
|
@ -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>
|
||||||
@ -69,7 +84,7 @@
|
|||||||
<tr id="productPrice">
|
<tr id="productPrice">
|
||||||
{% for row in data %}
|
{% for row in data %}
|
||||||
<td>
|
<td>
|
||||||
${{row[2]}}
|
{{row[2]}}zł
|
||||||
</td>
|
</td>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</tr>
|
</tr>
|
||||||
|
Loading…
Reference in New Issue
Block a user