From aaaa, 5 Years ago, written in Plain Text.
Embed
  1. <html>
  2. <head>
  3.     <title>Formularz</title>
  4.     <meta charset="utf-8">
  5. </head>
  6.     <style>
  7.         .konf{
  8.             font-size: 30px;
  9.             text-align: center;
  10.              }
  11.         .przycisk{
  12.             text-align: center;
  13.            
  14.         }
  15.     </style>
  16. <body>
  17.     <form methood="button" action="mailto:tkurpiel@gmail.com">
  18.         <table border="1">
  19.             <tr>
  20.                 <td class="konf" colspan="2">Wybierz konfiguracje</td>
  21.             </tr>
  22.             <tr>
  23.                 <td>Procesor:</td><td><select name="Procesor">
  24.                     <option value="Intel Core i3 5300" selected="selected">Intel Core i3 5300</option>
  25.                     <option value="Intel Core i5 3200">Intel Core i5 3200</option>
  26.                     <option value="Intel Core i7 2300">Intel Core i7 2300</option>
  27.                 </select></td>
  28.             </tr>
  29.             <tr>
  30.                 <td>Dysk:</td><td><select name="Dysk">
  31.                     <option value="500 GB" selected="selected">500 GB</option>
  32.                     <option value="1 TB">1 TB</option>
  33.                     <option value="1,5 TB">1,5 TB</option>
  34.                 </select></td>
  35.             </tr>
  36.             <tr>
  37.                 <td>RAM:</td><td><select name="RAM">
  38.                     <option value="4 GB" selected="selected">4 GB</option>
  39.                     <option value="8 GB">8 GB</option>
  40.                     <option value="16 GB">16 GB</option>
  41.                 </select></td>
  42.             </tr>
  43.             <tr>
  44.                 <td>Grafika:</td><td><select name="Grafika">
  45.                     <option value="MSI GeForce GTX 1650" selected="selected">MSI GeForce GTX 1650</option>
  46.                     <option value="Gigabyte GeForce RTX 2060">Gigabyte GeForce RTX 2060</option>
  47.                     <option value="Gigabyte Radeon RX 5700">Gigabyte Radeon RX 5700</option>
  48.                 </select></td>
  49.             </tr>
  50.             <tr>
  51.                 <td>Obudowa:</td><td><select id="obudowa" name="Obudowa">
  52.                     <option value="SilentiumPC Signum SG1M" selected="selected">SilentiumPC Signum SG1M</option>
  53.                     <option value="Genesis IRID 300">Genesis IRID 300</option>
  54.                     <option value="Fortron CMT340">Fortron CMT340</option>
  55.                 </select></td>
  56.             </tr>
  57.             <tr>
  58.                 <td class="przycisk"  colspan="2"><button onclick="show()" type="button">Wyślij</button></td>
  59.                
  60.                
  61.            
  62.             </tr>
  63.            
  64.  
  65.         </table>
  66.  
  67.     </form>
  68.  
  69. </body>
  70. </html>
  71.  
  72. <script>
  73.     function show(){
  74.         var selector = document.getElementById('obudowa');
  75.         var value = selector[selector.selectedIndex].value;
  76.         alert(value);
  77.     }
  78. </script>