123456789101112131415161718 |
- <!DOCTYPE html>
- <html lang='en'>
- <head>
- <meta charset='UTF-8' />
- <meta name='viewport' content='width=device-width, initial-scale=1.0' />
- <title>Home Work 1 JS</title>
- <link rel="stylesheet" href="all.css">
- </head>
- <body>
- <h1>Home Work 1</h1>
- <form id='form' action="#" class="form">
- <input id='login' type='text' placeholder='login' name='login' required/>
- <input id='password' type='password' placeholder='password' name='password' required/>
- <button id='check' class='btn' type='submit'>Login</button>
- </form>
- <script src='index.js'></script>
- </body>
- </html>
|