Future 3 years ago
parent
commit
126f3efeca
3 changed files with 17 additions and 16 deletions
  1. 7 8
      src/main/webapp/css/loginPage.css
  2. 8 7
      src/main/webapp/loginPage.html
  3. 2 1
      src/main/webapp/register.html

+ 7 - 8
src/main/webapp/css/loginPage.css

@@ -6,8 +6,6 @@
     text-decoration: none;
 }
 
-div {}
-
 .biggestBox {
     height: 100vh;
     display: flex;
@@ -23,7 +21,7 @@ div {}
 }
 
 .log-Page>h1:nth-child(1) {
-    color: rgb(254, 152, 2);
+    color: #E33333;
     font-size: 25px;
     font-weight: 400;
     text-align: center;
@@ -76,7 +74,7 @@ div {}
 
 .input-email div {
     padding: 9px 0px 3px 0px;
-    color: rgb(254, 152, 2);
+    color: #E33333;
 }
 
 .password {
@@ -102,7 +100,7 @@ div {}
 
 .input-password div:nth-of-type(2) {
     padding: 10px 0px 3px 0px;
-    color: rgb(254, 152, 2);
+    color: #E33333;
 }
 
 .checkPassword {
@@ -135,7 +133,7 @@ div {}
 
 .register>div {
     height: 14px;
-    color: rgb(254, 152, 2);
+    color: #E33333;
     padding: 0 8px;
 }
 
@@ -143,14 +141,15 @@ div {}
     width: calc(50% - 1px);
 }
 
-.logConfirm>div {
+.logConfirm>input {
     width: 90px;
     height: 48px;
     display: flex;
     justify-content: center;
     align-items: center;
     float: right;
-    background-color: rgb(254, 152, 2);
+    background-color: #E33333;
     border-radius: 4px;
     color: white;
+    outline: 0;
 }

+ 8 - 7
src/main/webapp/loginPage.html

@@ -5,14 +5,14 @@
     <meta charset="UTF-8">
     <meta http-equiv="X-UA-Compatible" content="IE=edge">
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
-    <link rel="stylesheet" href=".CSS/loginPage.css">
+    <link rel="stylesheet" href="CSS/loginPage.css">
     <title>Document</title>
 </head>
 
 
 <body>
     <div class="biggestBox">
-        <div class="log-Page">
+        <form class="log-Page" method="post" action="loginPage.html">
             <h1>E&S</h1>
             <h1>登录</h1>
             <div class="keepOn">
@@ -53,20 +53,21 @@
 
                 <div class="register">
                     <div>
-                        <span>创建账号</span>
+                        <a href="register.html">创建账号</a>
                     </div>
 
                 </div>
 
                 <div class="logConfirm">
-                    <div>
-                        <span>下一步</span>
-                    </div>
+                    <!-- <div> -->
+                        <!-- <span>下一步</span> -->
+                    <!-- </div> -->
+                    <input type="submit" value="下一步">
                 </div>
 
             </div>
 
-        </div>
+        </form>
     </div>
 </body>
 

+ 2 - 1
src/main/webapp/register.html

@@ -5,7 +5,8 @@
     <meta charset="UTF-8">
     <meta http-equiv="X-UA-Compatible" content="IE=edge">
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
-    <link rel="stylesheet" href=".CSS/register.css">
+    <link rel="stylesheet" type="text/css" href="css/register.css">
+    <!-- <link rel="stylesheet" type="text/css" href="css/CartCss.css"> -->
     <title>Document</title>
 </head>