1234567891011121314151617181920212223242526272829303132 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>登录RabbitMQ</title>
- </head>
- <body>
- <form action="http://192.168.10.167:8070" method="post" id="loginform">
- <div id="login-status"></div>
- <table class="form">
- <tbody><tr>
- <th><label>Username:</label></th>
- <td><input type="text" name="username" value="apollo"></td>
- </tr>
- <tr>
- <th><label>Password:</label></th>
- <td><input type="password" name="password" value="admin"></td>
- </tr>
- <tr>
- <th> <input type="hidden" name="_method" value="PUT"></th>
- <td><input type="submit" value="Login"></td>
- </tr>
- </tbody></table>
- </form>
- </body>
- <script type="text/javascript">
- //var form = document.getElementById('loginform');
- //form.submit();
- </script>
- </html>
|