-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpl_05.html
57 lines (54 loc) · 1.98 KB
/
pl_05.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
52
53
54
55
56
57
<!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">Formularze</h1>
</header>
<hr>
<section>
<h4>
<span class="label label-success">obowiązkowe</span>
5.1. Utwórz formularz do składania zamówienia zawierający następujące pola:
<ul>
<li>zamawiający</li>
<li>email zamawiającego</li>
<li>nazwa produktu</li>
<li>ilość produktów</li>
</ul>
</h4>
</section>
<section>
<h4>
<span class="label label-success">obowiązkowe</span>
5.2. Dodaj prostą walidację ilości produktów (to może być tylko dodatnia liczba naturalna).
</h4>
</section>
<section>
<h4>
<span class="label label-success">obowiązkowe</span>
5.3. Oznacz każde pole w formularzu jako obowiązkowe
</h4>
</section>
<section>
<h4>
<span class="label label-warning">warto</span>
5.4. Dodaj własny walidator adresu email (oparty o proste wyrażenie regularne lub obecność znaku @).
</h4>
</section>
</div>
</div>
</div>
<script src="https://devmeetings.github.io/devmeeting-angular/tasks.js"></script>
</body>
</html>