123456789101112131415161718192021222324 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>login</title>
- <meta charset="UTF-8" />
- </head>
- <body>
- <script src="main.js"></script>
- <div class="container">
- <div class="main">
- <form id="form_id" method="post" name="myform">
- <label>Login :</label>
- <input type="text" name="username" id="username" />
- <label>Password :</label>
- <input type="password" name="password" id="password" />
- <input type="button" value="Login" id="submit" onclick="validate()" />
- </form>
- </body>
- </html>
|