react+axios实现商务风格登录表单页面代码

代码语言:html

所属分类:表单美化

代码描述:react+axios实现商务风格登录表单页面代码

代码标签: react axios 登录

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开


<!DOCTYPE html>
<html lang="en" >

<head>

  <meta charset="UTF-8">

  
  
  
<style>
body{
    font-family: -apple-system, BlinkMacSystemFont, "San Francisco", Helvetica, Arial, sans-serif;
  font-weight:  300;  
  height:  100vh; 
  width:  100vw;
  margin:  0 0; 
  display:  flex; 
  align-items:  center; 
  justify-content: center; 
  background:  #f3f2f2; 
}
.App{
   display: flex;
 
    flex-direction: row;
    width: auto;
    height: auto;
    margin: auto auto;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0px 2px 6px -1px rgba(0, 0, 0, 0.12);
}
h2{
  font-size:  24px; 
  font-weight:  600; 
  margin-bottom:  20px;
  color:  rgba(0, 0, 0, 0.5)
}
h2 span{ 
  font-size:  24px;
  color:  rgba(0, 0, 0, 1);
  font-weight:  700; 
}
p{
  line-height:  155%; 
    margin-bottom:  5px; 
    font-size:  14px; 
    color:  #000;.........完整代码请登录后点击上方下载按钮下载查看

网友评论0