You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
570 B
Smarty
24 lines
570 B
Smarty
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<title>登录</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<script>
|
|
function copyText(){
|
|
console.log('hehe');
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<form id="login" action = "/login", method = "POST">
|
|
用户名:<input type="text" name="username"/>
|
|
密码:<input type="password" name="password"/>
|
|
<input type="submit" value="提交"/>
|
|
</form>
|
|
<a href="/regist">注册</a><br/>
|
|
<button type="button" onclick="copyText()">点我吧</button>
|
|
</body>
|
|
</html>
|