初步完成登录、注册、修改账号、主页内容

This commit is contained in:
2024-06-13 13:53:54 +08:00
parent e48e752b91
commit ad767a806b
31 changed files with 1291 additions and 488 deletions

View File

@@ -7,53 +7,124 @@ body {
display: flex;
flex-direction: column;
align-items: center;
overflow-x: hidden; /* 防止出现水平滚动条 */
}
header {
display: flex;
justify-content: space-between;
align-items: center;
background-color: rgba(28, 108, 178, 0.9);
color: white;
padding: 20px 0;
text-align: center;
padding: 20px;
width: 100%;
}
nav ul {
list-style: none;
padding: 0;
margin: 0;
.header-content {
display: flex;
align-items: center;
width: 100%;
justify-content: space-between;
}
nav ul li {
display: inline;
margin: 0 10px;
.logo {
font-size: 24px;
font-weight: bold;
margin-left: 20px;
}
nav ul li a {
.nav-buttons {
display: flex;
gap: 20px;
}
.nav-buttons a {
color: white;
text-decoration: none;
font-weight: bold;
font-size: 16px;
padding: 10px;
border-radius: 5px;
}
main {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
.nav-buttons a:hover {
background-color: #155a8c;
}
.background-container {
width: 100%;
max-width: 1500px;
height: 600px; /* Adjust according to the desired size */
background-image: url('/static/images/banner-login-20200629.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
display: flex;
align-items: center;
justify-content: center;
.user-menu {
position: relative;
display: flex;
align-items: center;
margin-right: 20px;
}
.user-menu span {
margin-right: 10px;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropbtn {
background-color: rgba(28, 108, 178, 0.9);
color: white;
border: none;
cursor: pointer;
font-size: 16px;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
right: 0; /* 确保下拉菜单靠右对齐 */
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {
background-color: #f1f1f1;
}
.dropdown:hover .dropdown-content {
display: block;
}
.slides {
position: relative;
width: 100%;
height: 400px;
overflow: hidden;
}
.slides ul {
display: flex;
padding: 0;
width: 100%;
height: 100%;
list-style: none;
margin: 0;
transition: transform 0.6s ease-in-out;
}
.slides li {
min-width: 100%;
box-sizing: border-box;
}
.slides img {
width: 100%;
height: 100%;
object-fit: cover;
}
.content {
@@ -61,28 +132,79 @@ main {
padding: 20px;
border-radius: 10px;
text-align: center;
position: absolute;
width: 80%;
max-width: 800px;
margin: -50px auto 20px;
position: relative;
}
h2 {
color: #1c6cb2;
.tabcontent {
display: block;
padding: 20px;
}
.links {
margin-top: 20px;
.form-row {
display: flex;
justify-content: space-between;
margin-bottom: 15px;
}
.links .btn {
.form-row label {
flex: 1;
margin-right: 10px;
text-align: right;
line-height: 32px;
}
.form-row input,
.form-row select {
flex: 2;
padding: 8px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 5px;
}
.passenger-input {
display: flex;
align-items: center;
gap: 5px;
}
.passenger-input button {
padding: 5px 10px;
font-size: 18px;
background-color: #1c6cb2;
color: white;
padding: 10px 20px;
text-decoration: none;
border: none;
border-radius: 5px;
margin: 10px;
display: inline-block;
cursor: pointer;
}
.links .btn:hover {
.passenger-input button:hover {
background-color: #155a8c;
}
.passenger-input input {
width: 50px;
text-align: center;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 5px;
}
.btn {
padding: 10px 20px;
background-color: #1c6cb2;
color: white;
border: none;
border-radius: 5px;
text-decoration: none;
display: inline-block;
cursor: pointer;
}
.btn:hover {
background-color: #155a8c;
}
@@ -92,4 +214,12 @@ footer {
text-align: center;
padding: 10px 0;
width: 100%;
margin-top: auto;
}
.error-message {
color: red;
font-size: 12px;
text-align: left;
margin-top: 5px;
}

View File

@@ -0,0 +1,121 @@
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #ffffff;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
}
header {
background-color: rgba(28, 108, 178, 0.9);
color: white;
padding: 20px 0;
text-align: center;
width: 100%;
}
main {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
position: relative;
}
.slides {
position: relative;
width: 100%;
height: 600px;
overflow: hidden;
}
.slides ul {
display: flex;
padding: 0;
width: 100%;
height: 100%;
list-style: none;
margin: 0;
transition: transform 0.6s ease-in-out;
}
.slides li {
min-width: 100%;
box-sizing: border-box;
}
.slides img {
width: 100%;
height: 100%;
object-fit: cover;
}
.content {
background-color: rgba(255, 255, 255, 0.8);
padding: 20px;
border-radius: 10px;
text-align: center;
position: absolute;
}
h2 {
color: #1c6cb2;
}
.login-form {
margin-bottom: 20px;
}
.login-form input {
display: block;
margin: 10px auto;
padding: 10px;
font-size: 16px;
width: 80%;
max-width: 300px;
margin-bottom: 20px; /* 增加外边距 */
}
.buttons {
display: flex;
justify-content: center;
gap: 10px;
}
.login-form button,
.btn {
padding: 10px 20px;
background-color: #1c6cb2;
color: white;
border: none;
border-radius: 5px;
text-decoration: none;
display: inline-block;
line-height: 20px;
cursor: pointer;
}
.login-form button:hover,
.btn:hover {
background-color: #155a8c;
}
footer {
background-color: rgba(28, 108, 178, 0.9);
color: white;
text-align: center;
padding: 10px 0;
width: 100%;
}
.error-message {
color: red;
font-size: 12px;
text-align: left;
margin-top: -10px;
margin-bottom: 10px;
}

View File

@@ -0,0 +1,144 @@
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #ffffff;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
}
header {
background-color: rgba(28, 108, 178, 0.9);
color: white;
padding: 20px 0;
width: 100%;
}
.header-content {
display: flex;
align-items: center;
justify-content: space-between;
width: 90%;
margin: 0 auto;
position: relative;
}
.header-content .btn-back {
padding: 10px 20px;
background-color: #1c6cb2;
color: white;
border: none;
border-radius: 5px;
text-decoration: none;
}
.header-content .btn-back:hover {
background-color: #155a8c;
}
.header-content h1 {
position: absolute;
left: 50%;
transform: translateX(-50%);
}
.header-content .header-spacer {
width: 100px; /* 占位符,确保标题居中 */
}
main {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
position: relative;
}
.content {
background-color: rgba(255, 255, 255, 0.9);
padding: 30px;
border-radius: 10px;
text-align: center;
width: 400px;
position: relative;
}
h2 {
color: #1c6cb2;
}
form {
margin-top: 20px;
}
.tab {
display: flex;
justify-content: space-around;
margin-bottom: 20px;
}
.tab button {
background-color: #f1f1f1;
border: none;
outline: none;
cursor: pointer;
padding: 10px 20px;
transition: 0.3s;
font-size: 17px;
border-radius: 5px;
}
.tab button:hover {
background-color: #ddd;
}
.tab button.active {
background-color: #1c6cb2;
color: white;
}
.tabcontent {
display: none;
}
.form-group {
margin-bottom: 15px;
text-align: left;
}
.form-group div {
margin-bottom: 5px;
font-weight: bold;
}
.form-group input {
width: 100%;
padding: 10px;
box-sizing: border-box;
}
button[type="submit"] {
padding: 10px 20px;
background-color: #1c6cb2;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
width: 100%;
font-size: 16px;
}
button[type="submit"]:hover {
background-color: #155a8c;
}
footer {
background-color: rgba(28, 108, 178, 0.9);
color: white;
text-align: center;
padding: 10px 0;
width: 100%;
}

View File

@@ -0,0 +1,71 @@
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #ffffff;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
}
form {
background-color: rgba(255, 255, 255, 0.9);
padding: 40px; /* 增加内边距 */
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 100%;
max-width: 500px; /* 增大表单框的最大宽度 */
margin: auto;
margin-top: 100px;
}
ul {
list-style-type: none;
padding: 0;
margin: 0;
}
li {
margin-bottom: 20px;
}
div {
display: flex;
flex-direction: column;
}
div div {
flex: 1;
padding-top: 5px;
}
input[type="text"], input[type="password"] {
width: 100%;
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 5px;
}
button {
width: 100%;
padding: 10px;
background-color: #1c6cb2;
color: white;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
}
button:hover {
background-color: #155a8c;
}
.error-message {
color: red;
font-size: 12px;
height: 12px;
margin-top: 5px;
}

View File

@@ -1,9 +0,0 @@
/* h1, ul, li, a, body {
margin: 0;
padding: 0;
text-decoration: none;
} */
li {
list-style: none;
}