Jacek Kowalski
2017-08-28 bc710e890d99f522d4adb0fa9bff5b0504a5a036
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')">
388202 11 <p>KOD/IS*N: <input type="text" name="id" id="step11" required="required" /></p>
175a52 12 <p><input type="submit" value="Znajdź" /></p>
JK 13
14 <p><i>Przy ręcznym wpisywaniu ośmiocyfrowego <br /> numeru ISSN, poprzedź go zerem</i></p>
15 </form>
16
17 <script type="text/javascript">
18 document.getElementById('step11').focus();
19 </script>
20
21 </td>
22 <td>
23
24 <form action="search.php" method="get">
25 <p>Tytuł: <input type="text" name="tytul" /><br />
26 Autor: <input type="text" name="autor" /><br />
27 Wydanie: <input type="text" name="wydanie" /></p>
28 <p>Miejsce: <input type="text" name="miejsce" /><br />
29 Rok: <input type="text" name="rok" /><br />
30 Wydawnictwo: <input type="text" name="wydawnictwo" /></p>
31 <p><input type="submit" value="Szukaj" /></p>
32 </form>
33
34 </td>
35 </tr>
36 </table>
37
38 <?php
39 include('design/bottom.php');
40 ?>