Added welcome page content

This commit is contained in:
Torsten Schulz
2024-02-09 12:44:18 +01:00
parent db9eabfb3e
commit fff39ef376
4 changed files with 32 additions and 1 deletions

View File

@@ -10,6 +10,7 @@ add_executable(${PROJECT_NAME}
src/main.cpp
src/broadcast.h src/broadcast.cpp
src/app.h src/app.cpp
docroot/text.xml
)
target_compile_features(${PROJECT_NAME} PRIVATE cxx_std_20)

View File

@@ -156,3 +156,7 @@ height: 31px;
box-shadow: 2px 2px 4px #666;
padding: 2px;
}
main {
margin: 1em;
overflow: auto;
}

24
docroot/text.xml Normal file
View File

@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<messages>
<message id="welcome">
<header>
<h1>Welcome to Our Website - Your Premier Destination for Chat, Single Chat, and Image Exchange</h1>
</header>
<main>
<section>
<h2>Why Choose Us?</h2>
<ol>
<li><strong>Chat:</strong> Dive into our dynamic chat rooms where you can converse with individuals from around the globe. Whether you're seeking casual conversations or meaningful connections, our chat feature offers a seamless and enjoyable experience.</li>
<li><strong>Single Chat:</strong> Searching for that special someone? Our single chat option provides a tailored environment for singles to mingle, flirt, and potentially find their perfect match. With advanced search filters and interactive features, meeting new people has never been easier.</li>
<li><strong>Image Exchange:</strong> Share memories, moments, and experiences effortlessly with our image exchange feature. Whether it's photos from your latest adventure or snapshots of your everyday life, our platform ensures secure and seamless image sharing.</li>
<li><strong>Privacy:</strong> Your privacy is our top priority. We understand the importance of confidentiality and ensure that all your interactions remain private and secure. With robust privacy settings and encryption protocols, you can chat and exchange images with peace of mind.</li>
<li><strong>Anonymous:</strong> Embrace anonymity with our platform. Whether you prefer to keep your identity discreet or simply enjoy the freedom of expression without constraints, our anonymous feature allows you to engage authentically while maintaining your privacy.</li>
</ol>
</section>
<section>
<h2>Join Us Today!</h2>
<p>Ready to embark on your journey of discovery and connection? Sign up now and experience the ultimate chat, single chat, and image exchange platform. Join our vibrant community and unlock endless possibilities today!</p>
</section>
</main>
</message>
</messages>

View File

@@ -68,7 +68,7 @@ App::~App() {
}
void App::setMetaTags() {
addMetaHeader("keywords", "chat, single chat, images, no registration, anonymous");
addMetaHeader("keywords", "chat, single chat, images, no registration, anonymousp");
}
void App::initApp() {
@@ -76,6 +76,7 @@ void App::initApp() {
setTitle("YP Direct Chat");
setCssTheme("");
useStyleSheet("style.css");
messageResourceBundle().use("../docroot/text");
}
void App::reSetUser() {
@@ -136,6 +137,7 @@ void App::createLoginContainer() {
auto age = addAgeInput(contentGrid);
auto countrySelection = addCountrySelection(contentGrid);
addStartChatButton(contentGrid, userName, countrySelection, age, gender);
contentContainer_->addNew<Wt::WText>(Wt::WString::tr("welcome"));
}
Wt::WLineEdit *App::addUsernameInput(Wt::WGridLayout* contentGrid) {