一、每日站立式会议

  1.站立式会议

成员 昨日完成工作 今日计划工作 遇到的困难
陈惠霖 好友界面初步 完善好友界面
侯晓龙 帮助他人建立数据库 用户信息界面
周楚池 完善管理员界面 用户界面
胡兆禧 完善管理员界面 用户界面
余金龙 完善管理员界面 用户界面
林涛 好友界面初步 完善好友界面

二、项目燃尽图

三、代码

 1 <%@ page language="java" contentType="text/html; charset=UTF-8"
2 pageEncoding="UTF-8"%>
3 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
4 <html>
5 <head>
6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7 <title>注册页面</title>
8 <style type="text/css">
9 body{
10 background-image: url(picture/c.jpg);
11 background-size:cover;
12 text-align:center;
13 }
14 jiao{
15 width:300px;
16 height:250px;
17 padding:13px;
18
19 position:absolute;
20 left:50%;
21 top:50%;
22 margin-left:-200px;
23 margin-top:-200px;
24 background-color:rgba(340,255,455,0.5);
25 border-radius:10px;
26 font-family:宋体;
27 }
28 .t{
29
30 box-sizing:border-box;
31 padding:6px 20px;
32 outline:none;
33 border-radius:6px;
34 text-align:center;
35
36 }
37 </style>
38 </head>
39 <script type="text/javascript">
40 function checkA() {
41 let num = document.getElementById('num').value;
42 let pwd=document.getElementById('pwd').value;
43 let pwd2 =document.getElementById('pwd2').value;
44
45 if(pwd != ''&&pwd2!=''&&num!=''&&username!='') {
46 if(pwd!= pwd2) {
47 alert('两次输入的密码不同,请重试!');
48 return false;
49 }
50
51 if(pwd.length<6){
52 alert('密码至少为6位!');
53 return false;
54 }
55
56 }else {
57 alert('输入不能为空!');
58 return false;
59 }
60 }
61
62
63 </script>
64 <body>
65 <jiao>
66 <form action="RegisterServlet0" method="post">
67 usernum :<input type="text" name="usernum" id="num" class="t" placeholder="ID" /><br/>
68 username:<input type="text" name="username" id="username" class="t" placeholder="ID" /><br/>
69
70 password:<input type="password" name="pwd1" id="pwd" placeholder="字母、数字组成" class="t" size="20" maxlength="18" onkeyup="value=value.replace(/[^\w\.\/]/ig,'')"><br/><br/>
71 again:&nbsp<input type="password" name="pwd2" id="pwd2"class="t" placeholder="confirm password" size="20" maxlength="18" onkeyup="value=value.replace(/[^\w\.\/]/ig,'')"><br/>
72 <br/><br/>
73 <input type="submit" value="Register" class="t" onclick="return checkA()"><br/><br/>
74 </form>
75 <input type="button" onclick="window.location.href='index.jsp'" value="Return" class="t" ></jiao><br/><br/>
76
77
78
79
80
81 </body>
82 </html>

四、截图

五、每日总结

成员 总结
陈惠霖 冲刺最后一天,加油
侯晓龙 大家都很努力,我也不能落后
周楚池 希望我没拖到大家后腿
胡兆禧 继续努力
余金龙 我希望能跟上各位,我也会慢慢进步的
林涛 要正式开始我的测试了

最新文章

  1. Android进程间通信之socket通信
  2. 使用mysql 的docker
  3. TI BLE CC2541的I2C主模式
  4. WPF中利用后台代码实现窗口分栏动态改变
  5. Sublime text 2 快捷键配置文件
  6. PHP脚本实现凯撒加(解)密
  7. MyEclipse修改项目名称
  8. 阿里Java开发手册1.3.0 文字版
  9. RobotFramework自动化测试框架-使用Python编写自定义的RobotFramework Lib
  10. quartz任务调度框架与spring整合
  11. python之旅六【第六篇】模块
  12. CAS 单点登录【2】自定义用户验证
  13. Django开发笔记六
  14. metasploit framework(十五):弱点扫描
  15. VMware vmdk文件打开方法
  16. ionic生成签名的APK方法总结
  17. A server is already running. Check /home/peter/stock/tmp/pids/server.pid. Exiting【Xshell 运行rails s 报错】
  18. 使用属性动画 — Property Animation
  19. iOS设计模式:静态工厂相关
  20. document.compatMode介绍

热门文章

  1. jdk的动态代理和静态代理你还写不出来嘛???
  2. ixgbe 驱动 为xxx驱动做准备1
  3. Kafka 生产者分区策略
  4. Spring源码之AbstractApplicationContext中refresh方法注释
  5. Pytest学习(十) - parametrize、fixture、request的混合使用
  6. ubuntu服务器启动过程中重启卡死的问题解决
  7. 使用ViewPager实现卡片叠加效果
  8. 【转】CentOS7 64位安装mysql教程
  9. 我要进大厂之大数据MapReduce知识点(2)
  10. Vector和ArrayList的联系和区别