现在的位置: 首页 > 综合 > 正文

index.html

2014年03月01日 ⁄ 综合 ⁄ 共 861字 ⁄ 字号 评论关闭

<html>

<title>网络收藏夹</title>
<head>
<style type="text/css">
body {text-align: center}
</style>

<script type="text/javascript">
/*
function print_u_p() // for debug
{
alert("user:"+document.getElementById("user").value+"\npassword:"
+document.getElementById("password").value);
}

function reset_u_p()
{
document.getElementById("user").value="guest";
document.getElementById("password").value="";
}
*/
</script>

</head>

<body>
<br />
<br />
<form language="JavaScript" name="theForm" method="get" action="CheckUser.jsp">
    <h1>超兽的网络收藏夹</h1>
    <h3>请登录:</h3>
    <p>
        用户:
        <input type="text" id="user" name="user" value="guest" size="20">
        <br />
        密码:  
        <input type="password" id="password" name="password" value="" size="20">
        <br />
        <input type="submit" !onclick="print_u_p()" value="确定">
        <input type="reset"  value="重置">
    </p>
    <strong>Come on:2B 水水</strong>
</form>
</body>
</html>

抱歉!评论已关闭.