| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>ArduRemoteID</title>
- <meta name="description" content="ArduPilot RemoteID Module.">
- <link rel="stylesheet" type="text/css" href="styles/main.css">
- </head>
- <body>
- <form name='loginForm'>
- <table width='20%' bgcolor='A09F9F' align='center'>
- <tr>
- <td colspan=2>
- <center><font size=4><b>ArduRemoteID Login</b></font></center>
- <br>
- </td>
- <br>
- <br>
- </tr>
- <br>
- <br>
- <tr>
- <td>Password:</td>
- <td><input type='Password' size=25 name='pwd'><br></td>
- <br>
- <br>
- </tr>
- <tr>
- <td><input type='submit' onclick='check(this.form)' value='Login'></td>
- </tr>
- </table>
- </form>
- <script>
- function check(form) {
- if (form.pwd.value=='admin') {
- window.open('/uploader.html')
- } else {
- alert('Incorrect Password')
- }
- }
- </script>
- </body>
- </html>
|