-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpl_02.html
51 lines (48 loc) · 1.73 KB
/
pl_02.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Angular2</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link href="https://devmeetings.github.io/devmeeting-angular/css/bootstrap-theme-cyborg/cyborg.min.css"
rel="stylesheet">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-xs-12">
<header>
<h1 class="text-center">Interakcja z użytkownikiem</h1>
</header>
<hr>
<section>
<h4>
<span class="label label-success">obowiązkowe</span>
2.1. Dodaj proste sortowanie produktów po cenie i nazwie. Do sortowania wykorzystaj przyciski, na których widać kierunek sortowania.
</h4>
</section>
<section>
<h4>
<span class="label label-warning">warto</span>
2.2. Dodaj filtrowanie produktów na podstawie wpisanego tekstu
</h4>
</section>
<section>
<h4>
<span class="label label-warning">dodatkowe</span>
2.3. Zastąp przyciski w sortowaniu listą rozwijaną.
</h4>
</section>
<section>
<h4>
<span class="label label-warning">dodatkowe</span>
2.4. Podczas filtrowania uwzglęnij również pole opisu produktu.
</h4>
</section>
</div>
</div>
</div>
<script src="https://devmeetings.github.io/devmeeting-angular/tasks.js"></script>
</body>
</html>