123456789101112131415161718192021222324 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>HW_JS_01</title>
- <link rel="stylesheet" href="css/main.css">
- </head>
- <body>
- <form action="#">
- <h2>Form</h2>
- <input type="text" name="Account" id="acc" placeholder="Enter login">
- <input type="password" name="Password" id="pass" placeholder="Enter password">
- <input type="button" value="Log in" onclick="verification()">
- <div id="result"></div>
- </form>
- <script src="/js/main.js"></script>
- </body>
- </html>
|