!DOCTYPE htmlhtmlhead titleRegistration Successfultitle style body background-image urlstaticimages1jpg; background-size cover; 添加其他样式 h
<!DOCTYPE html>
<html>
<head>
<title>Registration Successful</title>
<style>
body {
background-image: url("/static/images/1.jpg");
background-size: cover;
/* 添加其他样式 */
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100vh;
text-align: center;
}
h1, p, a {
color: green;
}
h1 {
margin-bottom: 20px;
font-size: 24px;
}
p {
margin-bottom: 10px;
font-size: 18px;
}
a {
font-size: 16px;
}
</style>
</head>
<body class="background">
<h1>祝贺!登录成功。点击下方按钮回到主页...</h1>
<pre><code><p>您的帐户已成功登录。</p>
<a href="{{ url_for('home') }}">首页</a>
</code></pre>
</body>
</html
原文地址: http://www.cveoy.top/t/topic/hWEK 著作权归作者所有。请勿转载和采集!