You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
3.1 KiB

1 month ago
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>signup</title>
<style>
.background-container {
width: 100%;
height: 1000px;
position: relative;
background: linear-gradient(90deg, #E7642A 0%, #E1BCE9 50%, #152DA9 100%);
}
.login-button {
cursor: pointer; /* 将鼠标指针设置为点击状态 */
}
.sign-up-link {
cursor: pointer;
color: black;
font-size: 20px;
font-family: Inter;
font-weight: 500;
text-decoration: none; /* 去掉超链接的下划线 */
}
</style>
<script>
function redirectToLogin() {
window.location.href = 'log_in.html'; // 点击后跳转到log_in.html
}
</script>
</head>
<body>
<div class="background-container">
<div style="width: 710px; height: 446px; left: 25%; top: 177px; position: absolute; background: rgba(217, 217, 217, 0.10); box-shadow: -38.53333282470703px 38.53333282470703px 38.53333282470703px rgba(255, 255, 255, 0.10) inset; border: 1px rgba(249, 249, 249, 0.51) solid; backdrop-filter: blur(77.07px)"></div>
<div style="width: 171px; height: 36px; left: 32%; top: 435px; position: absolute">
<label for="confirm_password">确认密码:</label>
<input type="password" id="confirm_password" name="confirm_password" required>
</div>
<div style="width: 65px; height: 38px; left: 35%; top: 201px; position: absolute; color: #001AFF; font-size: 32px; font-family: Inter; font-weight: 700; word-wrap: break-word" >注册</div>
<div style="width: 282px; height: 56px; left: 30%; top: 503px; position: absolute" class="login-button" onclick="redirectToLogin()">
<div style="width: 282px; height: 56px; left: 0px; top: 0px; position: absolute; background: linear-gradient(180deg, #152DA9 0%, #E7642A 100%); border-radius: 71px"></div>
<div style="left: 43%; top: 16px; position: absolute; color: #FAFAF9; font-size: 20px; font-family: Inter; font-weight: 500; word-wrap: break-word">注册</div>
</div>
<div style="width: 151px; height: 33px; left: 35%; top: 575px; position: absolute; color: black; font-size: 20px; font-family: Inter; font-weight: 500; word-wrap: break-word" class="sign-up-link" onclick="redirectToLogin()">已有帐号?登录</div>
<div style="width: 173px; height: 35px; left: 32%; top: 364px; position: absolute">
<label for="password">密码:</label>
<input type="password" id="password" name="password">
</div>
<div style="width: 173px; height: 35px; left: 32%; top: 294px; position: absolute">
<label for="username">用户名:</label>
<input type="text" id="username" name="username">
</div>
<img style="width: 499px; height: 594px; left: 50%; top: 119px; position: absolute; border-radius: 40px" src="E:\softwareengineer\work2\frontend\assets\d2.png" />
</div>
</body>
</html>