Jacek Kowalski
2019-12-16 07517ae563097e04e91ea3fae2c2ca1cf2309b86
commit | author | age
175a52 1 <?php
JK 2 $title = 'Wyszukiwanie i wypożyczanie';
3 include('design/top.php');
4 ?>
5
6 <table class="main">
7 <tr>
8 <td>
9
10 <form action="search.php" method="get" onsubmit="return ffalse('step1')">
11 <p>KOD/IS*N: <input type="text" name="id" id="step11" required="required" /><br />
12 Półka, rząd: <input type="text" name="polka" size="3" maxlength="3" />
13 / <input type="text" name="rzad" size="3" maxlength="3" /></p>
14 <p><input type="submit" value="Znajdź" /></p>
15
16 <p><i>Przy ręcznym wpisywaniu ośmiocyfrowego <br /> numeru ISSN, poprzedź go zerem</i></p>
17 </form>
18
19 <script type="text/javascript">
20 document.getElementById('step11').focus();
21 </script>
22
23 <hr />
24
25 <a href="list_all.php">Pełna lista książek</a> <br />
26 <a href="list_borrowed.php">Wypożyczone</a> <br />
27 <a href="list_repulsed.php">Wycofane</a>
28
29 </td>
30 <td>
31
32 <form action="search.php" method="get">
33 <p>Tytuł: <input type="text" name="tytul" /><br />
34 Autor: <input type="text" name="autor" /><br />
35 Wydanie: <input type="text" name="wydanie" /></p>
36 <p>Miejsce: <input type="text" name="miejsce" /><br />
37 Rok: <input type="text" name="rok" /><br />
38 Wydawnictwo: <input type="text" name="wydawnictwo" /></p>
39 <p><input type="submit" value="Szukaj" /></p>
40 </form>
41
42 </td>
43 </tr>
44 </table>
45
46 <?php
47 include('design/bottom.php');
48 ?>