Untitled

 avatar
unknown
html
3 years ago
881 B
7
Indexable
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <link rel="icon" href="https://glitch.com/favicon.ico" />

    <title>Hello World!</title>
    <!-- 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 id="login" type="text" name="login" />
        <br />
        <label>Hasło:*</label>
        <br />
        <input id="pass" type="password" name="pass" />
        <input id="zaloguj" type="submit" value="Zaloguj" />
      </fieldset>
    </form>
    
    <p id="infoLogowanie"></p>
    
  </body>
</html>
Editor is loading...