!DOCTYPE htmlhtmlhead titleRegistration Successfultitle style body background-image urlstaticimages1jpg; background-size cover; 添加其他样式 style
<!DOCTYPE html>
<html>
<head>
<title>Registration Successful</title>
<style>
body {
background-image: url("/static/images/1.jpg");
background-size: cover;
/* 添加其他样式 */
}
h1, p, a {
color: white;
}
</style>
</head>
<body class="background">
<h1>祝贺!登录成功。点击下方按钮回到主页...</h1>
<p>您的帐户已成功登录。</p>
<a href="{{ url_for('home') }}">首页</a>
</body>
</html>
原文地址: http://www.cveoy.top/t/topic/hWEF 著作权归作者所有。请勿转载和采集!