12.6

发布时间 2023-12-18 22:13:03作者: 张佳木

今日学习内容


<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<meta charset="UTF-8">
<title>登录</title>
<style>
.d1 {
text-align: center;
}

label {
font-size: large;
}

input {
margin-top: 10px;
border-radius: 10px;
padding-left: 10px;
margin-bottom: 10px;

}

.submit {
border-radius: 0%;
width: 90px;
height: auto;
}
</style>
</head>

<body>
<form id="login-form">
<div class="d1">
<h1>登录到界面</h1>
<hr>
<label for="username">用户名</label>
<input type="text" name="username" id="username" >
<br>
<label for="password">密码</label>
<input type="password" name="password" id="password">
<br>
<input type="submit" value="登录">
<script src="script.js"></script> </div>
</form>
</body>
</html>