- <html>
- <head>
- <title>Formularz</title>
- <meta charset="utf-8">
- </head>
- <style>
- .konf{
- font-size: 30px;
- text-align: center;
- }
- .przycisk{
- text-align: center;
- }
- </style>
- <body>
- <form methood="button" action="mailto:tkurpiel@gmail.com">
- <table border="1">
- <tr>
- <td class="konf" colspan="2">Wybierz konfiguracje</td>
- </tr>
- <tr>
- <td>Procesor:</td><td><select name="Procesor">
- <option value="Intel Core i3 5300" selected="selected">Intel Core i3 5300</option>
- <option value="Intel Core i5 3200">Intel Core i5 3200</option>
- <option value="Intel Core i7 2300">Intel Core i7 2300</option>
- </select></td>
- </tr>
- <tr>
- <td>Dysk:</td><td><select name="Dysk">
- <option value="500 GB" selected="selected">500 GB</option>
- <option value="1 TB">1 TB</option>
- <option value="1,5 TB">1,5 TB</option>
- </select></td>
- </tr>
- <tr>
- <td>RAM:</td><td><select name="RAM">
- <option value="4 GB" selected="selected">4 GB</option>
- <option value="8 GB">8 GB</option>
- <option value="16 GB">16 GB</option>
- </select></td>
- </tr>
- <tr>
- <td>Grafika:</td><td><select name="Grafika">
- <option value="MSI GeForce GTX 1650" selected="selected">MSI GeForce GTX 1650</option>
- <option value="Gigabyte GeForce RTX 2060">Gigabyte GeForce RTX 2060</option>
- <option value="Gigabyte Radeon RX 5700">Gigabyte Radeon RX 5700</option>
- </select></td>
- </tr>
- <tr>
- <td>Obudowa:</td><td><select id="obudowa" name="Obudowa">
- <option value="SilentiumPC Signum SG1M" selected="selected">SilentiumPC Signum SG1M</option>
- <option value="Genesis IRID 300">Genesis IRID 300</option>
- <option value="Fortron CMT340">Fortron CMT340</option>
- </select></td>
- </tr>
- <tr>
- <td class="przycisk" colspan="2"><button onclick="show()" type="button">Wyślij</button></td>
- </tr>
- </table>
- </form>
- </body>
- </html>
- <script>
- function show(){
- var selector = document.getElementById('obudowa');
- var value = selector[selector.selectedIndex].value;
- alert(value);
- }
- </script>