login.php
1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>用户登录</title>
<link type="text/css" rel="stylesheet" href="../apidocassets/css/mess_front.css" />
<script type="text/javascript" src="../apidocassets/javascript/jquery.min.js" ></script>
<script type="text/javascript" src="../apidocassets/javascript/mess_front.js" ></script>
</head>
<body>
<div class="con">
<form action="http://lys.com/wx5019b9c455ea9c81/Message/Api/User/UserLogin/Login" method="post" id="frm_login">
<table>
<caption><h2>用户登录</h2></caption>
<tr>
<td>用户名:</td>
<td>
<input type="text" name="name" id="txtName" >
</td>
</tr>
<tr>
<td>密码:</td>
<td>
<input type="password" name="pwd" id="txtPwd" >
</td>
</tr>
<tr>
<td colspan="2" style="text-align: center;">
<input type="button" value="登录" onclick="javascript:jumpLogin();" style="padding: 10px 20px;" >
</td>
</tr>
</table>
</form>
</div>
</body>
</html>