您的位置:首页 > Web前端 > CSS

ssh登录的件等界面,,对于css,jsp不熟的人有用

2013-05-27 16:10 211 查看
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<html>
<head>
<title>用户登录界面</title>
<style type="text/css">
.login{
font-family: Arial;
font-size: 14px;
}

.newStyle {
opacity: 0.5;
box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5) ;
padding:10px; width:300px; height:50px;
border: 5px solid #dedede;
-moz-border-radius: 15px;
border-radius:15px;
background: -moz-radial-gradient(30px 30px, circle farthest-corner, #58ff00 0%, rgba(222, 255, 0, 0) 30%);
vertical-align: middle;
}
</style>

</head>
<body topmargin="150px">
<center>
<p></p>
<form action="person_login" method="post">
<fieldset id="inputs" style="width: 400; height: 150" class="newStyle"><br>
<legend>雇员登录</legend>
id:<input type="text" class="login" name="id" placeholder="请输入id" ><br><br>
密码:<input type="password" class="login" name="password" placeholder="请输入密码" ><br><br>

</fieldset>
<input type="submit" value="登录">
<input type="reset" value="重置">
</form>
</center>
</body>
</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: