潘志宝
2024-11-21 d338b50afd6504a9676f0a26b3ecbcc844483e7c
提交 | 用户 | 时间
e7c126 1 <!--
H 2   ~ Copyright 1999-2018 Alibaba Group Holding Ltd.
3   ~
4   ~ Licensed under the Apache License, Version 2.0 (the "License");
5   ~ you may not use this file except in compliance with the License.
6   ~ You may obtain a copy of the License at
7   ~
8   ~      http://www.apache.org/licenses/LICENSE-2.0
9   ~
10   ~ Unless required by applicable law or agreed to in writing, software
11   ~ distributed under the License is distributed on an "AS IS" BASIS,
12   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   ~ See the License for the specific language governing permissions and
14   ~ limitations under the License.
15   -->
16
17 <!DOCTYPE html>
18 <html>
19 <head>
20     <meta charset="UTF-8">
21     <title>登录</title>
22 </head>
23 <body>
24 <h3>登录</h3>
25 <form action="/nacos/login" method="post">
26     <table>
27         <tr>
28             <td>用户名:</td>
29             <td><input type="text" name="username"></td>
30         </tr>
31         <tr>
32             <td>密码:</td>
33             <td><input type="password" name="password"></td>
34         </tr>
35         <tr>
36             <td colspan="2">
37                 <button type="submit">登录</button>
38             </td>
39         </tr>
40     </table>
41 </form>
42 </body>
43 </html>