2023-02-01 20:00:08 +01:00
|
|
|
<html>
|
|
|
|
<head>
|
2023-02-04 04:08:54 +01:00
|
|
|
<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>
|
2023-02-01 20:00:08 +01:00
|
|
|
<title>Zmień hasło</title>
|
2023-02-04 04:08:54 +01:00
|
|
|
<link rel="stylesheet" href={{ url_for('static', filename='css/editProfile.css') }} />
|
|
|
|
<link rel="stylesheet" href={{ url_for('static', filename='css/topStyle.css') }} />
|
2023-02-01 20:00:08 +01:00
|
|
|
<script src={{ url_for('static', filename='js/changePassword.js') }}></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>Zmień hasło</h1>
|
|
|
|
<p>{{ msg }}</p>
|
|
|
|
<form action={{ url_for('changePassword') }} method="POST" onsubmit="return validate()">
|
|
|
|
<p>stare hasło: <input type="password" name="oldpassword"></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>
|
2023-02-04 04:08:54 +01:00
|
|
|
<input type="submit" value="Zapisz">
|
2023-02-01 20:00:08 +01:00
|
|
|
</form>
|
|
|
|
<a href="{{ url_for('profileHome') }}">Idż do Profilu</a>
|
|
|
|
</body>
|
|
|
|
</html>
|