iut-hapi/lib/services/templates/welcome.html

83 lines
2.2 KiB
HTML
Raw Permalink Normal View History

2021-04-12 03:24:17 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to Our Application!</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f7f7f7;
margin: 0;
padding: 0;
color: #333;
}
.container {
max-width: 600px;
margin: 50px auto;
padding: 20px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header {
text-align: center;
margin-bottom: 30px;
}
.logo {
width: 100px;
height: auto;
}
.content {
text-align: justify;
}
.cta-button {
display: inline-block;
padding: 10px 20px;
background-color: #ff6f61;
color: #fff;
text-decoration: none;
border-radius: 5px;
margin-top: 30px;
}
.footer {
text-align: center;
margin-top: 30px;
font-size: 12px;
color: #666;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<img src="../logo.png" alt="Logo" class="logo">
<h1>Welcome to Our Application!</h1>
</div>
<div class="content">
<p>Hello,</p>
<p>We are thrilled to have you join our community! Your journey with us begins now, and we can't wait to
share
all the exciting features and updates we have in store for you.</p>
<p>To get started, simply log in to your account and explore everything our application has to offer.
Don't hesitate to reach out to our support team if you have any questions or need assistance along the
way.</p>
<a href="http://localhost:4000/documentation#/user/postUser" class="cta-button">Log In Now</a>
<p>Happy exploring!</p>
</div>
<div class="footer">
<p>&copy; 2024 Cemal. All rights reserved.</p>
</div>
</div>
</body>
</html>