Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="pl">
- <head>
- <title>Formularze</title>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <!-- import the webpage's stylesheet -->
- <link rel="stylesheet" href="/style.css">
- <!-- import the webpage's javascript file -->
- <script src="/script.js" defer></script>
- </head>
- <body>
- <form>
- <fieldset>
- <legend>
- Logowanie
- </legend>
- <label>Login:*</label>
- <br>
- <input type="text" name="login" maxlength="5" required placeholder="podaj login">
- <br>
- <label>Hasło:*</label>
- <br>
- <input type="password" name="pass" required placeholder="podaj hasło">
- <br>
- <input type="submit" value="Zaloguj">
- <input type="reset">
- </fieldset>
- </form>
- <h3>
- Przykłady
- </h3>
- <input type="email" name="email">
- <br>
- <input type="date" name="data">
- <br>
- <input type="radio" name="plec">Kobieta
- <br>
- <input type="radio" name="plec">Mężczyzna
- <br>
- <input type="checkbox" name="regulamin">Czy akceptujesz <a href="regulamin.html">regulamin</a>?
- <textarea rows="10" cols="30">
- Uwagi
- </textarea>
- <input type="file" name="plik">
- <form>
- </form>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement