Untitled
unknown
plain_text
2 years ago
2.6 kB
10
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>User Management System</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-image: url('pexels-no-name-66997.jpg'); /* Change 'background-image.jpg' to the path of your image */
background-size: cover;
background-position: center;
}
.overlay {
background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay */
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.container {
max-width: 800px;
padding: 30px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
color: #333;
margin-bottom: 20px;
font-size: 2em;
}
p {
text-align: center;
margin-bottom: 30px;
color: #666;
}
ul {
list-style: none;
padding: 0;
text-align: center;
}
li {
margin: 10px;
}
.btn {
display: inline-block;
padding: 15px 30px;
background-color: #007bff;
color: #fff;
text-decoration: none;
border-radius: 30px;
transition: background-color 0.3s;
font-size: 1em;
border: none;
cursor: pointer;
text-transform: uppercase;
letter-spacing: 1px;
}
.btn:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="overlay">
<div class="container">
<h1>Welcome to User Management System</h1>
<p>This is a simple user management system. You can perform the following actions:</p>
<ul>
<li><a href="register.html" class="btn">Register</a></li>
<li><a href="login.html" class="btn">Login</a></li>
<li><a href="profile.html" class="btn">Manage Profile</a></li>
<!-- Add more actions or links as needed -->
</ul>
</div>
</div>
</body>
</html>
Editor is loading...
Leave a Comment