Brak tytułu

Data utworzenia: 2025-05-06 06:58:48
<!DOCTYPE html> <html lang="pl"> <head> <meta charset="UTF-8" /> <title>Sklep - rejestracja</title> <link rel="stylesheet" href="style.css" /> </head> <body> <aside> <img src="obraz1.png" alt="promocje" /> <h2>Sprawdź promocje</h2> <table> <tr> <th>Produkt</th> <th>Rabat</th> </tr> <tr> <td>Koszula</td> <td>20%</td> </tr> <tr> <td>Spodnie</td> <td>25%</td> </tr> <tr> <td>Buty</td> <td>30%</td> </tr> </table> </aside> <h1>Zarejestruj się w sklepie</h1> <main> <button type="button" value="Klient" onclick="aktywacja(1)">Klient</button> <button type="button" value="Adres" onclick="aktywacja(2)">Adres</button> <button type="button" value="Kontakt" onclick="aktywacja(3)">Kontakt</button> <section> <p>Imię</p> <input type="text" name="" placeholder="Wpisz dane..." /> <p>Nazwisko</p> <input type="text" /> <p>Data urodzenia</p> <input type="date" /> </section> <section class="drugi" id="drugi"> <p>Ulica</p> <input type="text" name="" id="ulica" onfocusout="zmieniaj()"/> <p>Numer</p> <input type="text" name="" id="ulica" onfocusout="zmieniaj()"/> <p>Miasto</p> <input type="text" name="" id="ulica" onfocusout="zmieniaj()"/> </section> <section class="zakladka"> <p>Numer komórkowy</p> <input type="tel" /> <p> <label> <input type="checkbox" /> Akceptuję RODO </label> </p> <button>Zatwierdź dane</button> </section> </section> <section class="pasek"> <section></section> </section> </main> <footer> <h4>Rejestrację do sklepu wykonał: Kamil</h4> </footer> </body> </html>
Powrót