1234567891011121314151617181920212223 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel="stylesheet" href="blueBelt.css">
- <title>Form</title>
- </head>
- <body>
- <div class="container">
- <div class="form">
- <input type="text" id="login" placeholder="login">
- <input type="password" id="password" placeholder="password">
- <button id="check">log in</button>
- </div>
-
- <div id="successBox"><h1>Success!</h1></div>
- <div id="failureBox"><h1>Failure!</h1></div>
- </div>
- <script src="blueBelt.js"></script>
- </body>
- </html>
|