菜鸟的博客

纵有疾风起,人生不言弃。

导航

结对作业10

PSP0(Personal Software Process Stages ) 所需时间(TIME)
Planning(计划)  全国地铁查询基本实现,后面就是优化了
   estimate[估计这个任务需要多少时间 ] 2h
Development (开发 )  
   · Design [具体设计 ] 1
   · Coding [具体编码 ] 2
   · Test [测试(自我测试,修改代码,提交修改)] 2
Reporting(报告 )  
  · Postmortem & Process Improvement Plan [事后总结, 并提出过程改进计划 ] 1h
合计 8h
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Login Page</title>
  <style>
    /* Resetting default styles */
    body,
    html {
      margin: 0;
      padding: 0;
    }

    /* Applying your global CSS styles */
    body {
      background: url('images/body_bg.jpg') top center fixed;
      font-size: 14px;
      font-family: Arial, sans-serif;
    }

    a {
      text-decoration: none;
      color: #b94648;
    }

    #login_box {
      width: 20%;
      height: 400px;
      background-color: rgba(0, 0, 0, 0.6);
      margin: auto;
      margin-top: 10%;
      text-align: center;
      border-radius: 10px;
      padding: 50px;
    }

    h2 {
      color: rgba(255, 255, 255, 0.9);
      margin-top: 5%;
      font-size: 22px;
    }

    #input_box {
      margin-top: 5%;
    }

    input {
      width: 60%;
      font-size: 15px;
      color: #fff;
      background: transparent;
      border: none;
      border-bottom: 2px solid #fff;
      padding: 5px 10px;
      outline: none;
      margin-top: 10px;
    }

    button {
      width: 60%;
      height: 30px;
      border-radius: 10px;
      border: none;
      color: #fff;
      text-align: center;
      line-height: 30px;
      font-size: 15px;
      background-image: linear-gradient(to right, #30cfd0, #330867);
      margin-top: 30px;
      cursor: pointer;
    }
  </style>
</head>

<body>
  <div id="login_box">
    <h2>LOGIN</h2>
    <div id="input_box">
      <input type="text" placeholder="请输入用户名">
    </div>
    <div id="input_box">
      <input type="password" placeholder="请输入密码">
    </div>
    <button>登录</button>
  </div>
</body>

</html>
 

 

posted on 2024-04-22 19:53  hhmzd233  阅读(6)  评论(0编辑  收藏  举报