学生登录网站模板:学生网页

哆啦Ai流程自动化发布于:2023-05-16 08:20热度:895 ℃
点赞15收藏

以下是一个简单的学生登录网站的模板,您可以根据需要进行修改:
```html



t学生登录
t
t
t


t


tt

学生登录


tt

ttt
ttt
ttt
ttt
ttt
tt

t



```
CSS:
```css
body {
tbackground-color: #f2f2f2;
}
.container {
tmargin: 20px auto;
tpadding: 20px;
tborder-radius: 5px;
tbackground-color: #fff;
tbox-shadow: 0 0 10px rgba(0,0,0,0.3);
}
h1 {
ttext-align: center;
tmargin-bottom: 20px;
}
label {
tdisplay: block;
tmargin-bottom: 5px;
}
input[type="text"],
input[type="password"] {
tpadding: 10px;
tmargin-bottom: 20px;
tborder-radius: 5px;
tborder: 1px solid #ccc;
tbox-sizing: border-box;
}
input[type="submit"] {
tbackground-color: #4CAF50;
tcolor: #fff;
tpadding: 10px 20px;
tborder: none;
tborder-radius: 5px;
tcursor: pointer;
}
```
该模板包含一个登录表单,其中包含用户名和密码字段,以及一个登录按钮。您可以在样式表中更改表单的外观和布局,以适应您的需要。