Jacek Kowalski
2019-12-16 07517ae563097e04e91ea3fae2c2ca1cf2309b86
commit | author | age
175a52 1 <?php
JK 2 $title = 'Położenie książki';
3 include('design/top.php');
4 ?>
5
6 <table class="main">
7 <tr>
8 <td>
9
10 <h3>Ustawianie</h3>
11
12 <form action="place_set.php" method="post" onsubmit="return ffalse('step1')">
13 <p>Miejsce (regał/półka/rząd): <br />
14 <input type="text" name="regal" id="step11" size="5" maxlength="5" required="required" />
15 / <input type="text" name="polka" id="step12" class="focus" size="3" maxlength="3" />
16 / <input type="text" name="rzad" id="step13" class="focus" size="3" maxlength="3" /></p>
17 <p>KODY książek: <br /> <textarea name="kody" id="step14" cols="18" rows="8" required="required"></textarea></p>
18 <p><input type="submit" value="Zastosuj" /></p>
19 </form>
20
21 <script type="text/javascript">
22 document.getElementById('step11').focus();
23 </script>
24
25 </td>
26 <td>
27
28 <h3>Zmiana</h3>
29
30 <form action="place_change.php" method="post" onsubmit="return ffalse('step2')">
31 <p>Miejsce (regał/półka/rząd): <br />
32 <input type="text" name="regal" id="step21" size="5" maxlength="5" required="required" />
33 / <input type="text" name="polka" id="step22" class="focus" size="3" maxlength="3" />
34 / <input type="text" name="rzad" id="step23" class="focus" size="3" maxlength="3" /></p>
35 <p>Nowe miejsce (zostaw puste, aby usunąć): <br />
36 <input type="text" name="regal2" id="step24" class="focus" size="5" maxlength="5"  />
37 / <input type="text" name="polka2" id="step25" class="focus" size="3" maxlength="3" />
38 / <input type="text" name="rzad2" id="step26" class="focus" size="3" maxlength="3" /></p>
39 <p><input type="submit" value="Zastosuj" /></p>
40 </form>
41
42 </td>
43 </tr>
44
45 <tr><td colspan="2"><p><i>Można pomijać argumenty półka i rząd, jeśli jest taka potrzeba.</i></p></td></tr>
46 </table>
47
48 <?php
49 include('design/bottom.php');
50 ?>