Prześlij pliki do 'templates'

This commit is contained in:
Sławomir Łopata 2023-02-16 23:54:38 +01:00
parent d18046ec9a
commit 5b9e4bd2d7
5 changed files with 185 additions and 0 deletions

80
templates/new.html Normal file
View File

@ -0,0 +1,80 @@
<!DOCTYPE html>
<html>
<head>
<title>dodaj nowy komentarz</title>
<link rel="stylesheet" href={{url_for('static', filename='css/delete.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>
<a href="/show">
<img id="koment" src= {{ url_for('static', filename='images/koment.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>
<h3>Komentarze</h3>
<hr/>
{%- for category, message in get_flashed_messages(with_categories = true) %}
<div class = "alert alert-danger">
{{ message }}
</div>
{%- endfor %}
<form action = "{{ request.path }}" method = "post">
<label for = "nick">Nick</label><br>
<input type = "text" name = "nick" placeholder = "nick" /><br>
<label for = "produkt">Produkt</label><br>
<input type = "text" name = "produkt" placeholder = "produkt" /><br>
<label for = "koment">Koment</label><br>
<textarea name = "koment" placeholder = "koment"></textarea><br>
<input type = "submit" value = "Submit" />
</form>
</body>
</html>

View File

@ -31,6 +31,10 @@
<img id="buty" src= {{ url_for('static', filename='images/buty.png') }} />
</a>
<a href="/show">
<img id="koment" src= {{ url_for('static', filename='images/koment.png') }} />
</a>
<div id="kart">
<a class="link" href="/koszyk">
<img src={{url_for('static', filename='images/koszyk_zakupowy.png')}} id="koszykIcon" />

View File

@ -31,6 +31,10 @@
<img id="buty" src= {{ url_for('static', filename='images/buty.png') }} />
</a>
<a href="/show">
<img id="koment" src= {{ url_for('static', filename='images/koment.png') }} />
</a>
<div id="kart">
<a class="link" href="/koszyk">
<img src={{url_for('static', filename='images/koszyk_zakupowy.png')}} id="koszykIcon" />

View File

@ -31,6 +31,11 @@
<a href="/displayCategory?categoryId=5">
<img id="buty" src= {{ url_for('static', filename='images/buty.png') }} />
</a>
<a href="/show">
<img id="koment" src= {{ url_for('static', filename='images/koment.png') }} />
</a>
</div>
<form action="/register" method="POST" onsubmit="return validate()">
<p>Email: <input type="email" name="email"></p>

92
templates/show.html Normal file
View File

@ -0,0 +1,92 @@
<!DOCTYPE html>
<html lang = "pl">
<head>
<title>wszystkie komentarze</title>
<link rel="stylesheet" href={{url_for('static', filename='css/delete.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>
<a href="/show">
<img id="koment" src= {{ url_for('static', filename='images/koment.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>
<h3>
<a href = "{{ url_for('show') }}">Komentarze</a>
</h3>
<hr/>
{%- for message in get_flashed_messages() %}
{{ message }}
{%- endfor %}
<h3>Komentarze (<a href = "{{ url_for('new') }}">Dodaj komentarz</a>)</h3>
<table>
<thead>
<tr>
<th>Nick</th>
<th>Produkt</th>
<th>Koment</th>
</tr>
</thead>
<tbody>
{% for komentarz in komentarze %}
<tr>
<td>{{ komentarz.nick }}</td>
<td>{{ komentarz.produkt }}</td>
<td>{{ komentarz.koment }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</body>
</html>