PSP0(Personal Software Process Stages ) |
所需时间(TIME) |
Planning(计划) |
今天改了下地铁查询的后端jpa,写了个web的登陆注册页面 |
estimate[估计这个任务需要多少时间 ] |
2h |
Development (开发 ) |
|
· Design [具体设计 ] |
1 |
· Coding [具体编码 ] |
2 |
· Test [测试(自我测试,修改代码,提交修改)] |
2 |
Reporting(报告 ) |
|
· Postmortem & Process Improvement Plan [事后总结, 并提出过程改进计划 ] |
1h |
<h1>注册</h1>
<!-- 注册按钮 --> 注册 ← 返回 <!-- 登录表单 -->
<h1>登录</h1>
<div class="flex">记住我忘记密码?</div>
<!-- 登录按钮 -->登录 注册 →
<style><!--
/* 样式 */
.login-page {
height: 100vh;
background-color: #fff;
.bg {
background: url('@/assets/logo2.png') no-repeat 60% center / 240px auto,
url('@/assets/login_bg.jpg') no-repeat center / cover;
border-radius: 0 20px 20px 0;
}
.form {
display: flex;
flex-direction: column;
justify-content: center;
user-select: none;
.title {
margin: 0 auto;
}
.button {
width: 100%;
}
.flex {
width: 100%;
display: flex;
justify-content: space-between;
}
}
}
--></style>