File: /home/httpd/html/chatfree24.com/public_html/templates/default_v2/template.contact.php
<? getTemplate('template.notifications.php'); ?>
<section class="forms p-0">
<div class="container-fluid custom-50 pt-5 pb-5">
<div class="row justify-content-center mt-2">
<div class="col-lg-12 col-md-12 col-sm-12">
<div class="card">
<div class="card-title text-center light-dark-bk d-inline-flex align-items-center mb-0">
<div class="row header-row">
<span class="text-uppercase d-flex flex-xl-nowrap flex-wrap justify-content-start align-items-center" href="index.html">
<span class="text-header m-3">Contact</span>
</span>
</div>
</div>
<div class="card-body mt-0">
<form class="form-block" id="contact-form" name="formContact" method="post" action="">
<div class="row justify-content-center">
<div class="col-xxl-4 col-lg-8 mb-4 form-input">
<label for="name" class="form-label"><?php echo _t('Username'); ?></label>
<input class="form-control" name="name" type="text" id="name" value="<? echo $_SESSION['username']; ?>" placeholder="<?php echo _t('Username'); ?>">
</div>
<div class="col-xxl-4 col-lg-8 mb-4 form-input">
<label for="email" class="form-label"><?php echo _t("Email") ?></label>
<input class="form-control" name="email" type="text" id="email" value="" placeholder="<?php echo _t("Email") ?>">
</div>
</div>
<div class="row justify-content-center">
<div class="col-lg-8 mb-4 form-input">
<label for="message" class="form-label"><?php echo _t("Message") ?></label>
<textarea class="form-control" name="message" id="textfield3" placeholder="<?php echo _t("Message") ?>"></textarea>
</div>
</div>
<div class="row justify-content-center">
<div class="col-xxl-4 col-lg-8 mb-5 form-input">
<label for="captchaaa" class="form-label"><?php echo _t("Human?") ?></label>
<div class="captcha-wrapper">
<img src="<?php echo $basehttp; ?>/includes/captchaBlack.php?<?php echo time(); ?>" class="captcha-img" />
<input class="form-control captcha-input" name="captchaaa" type="text" value="" placeholder="<?php echo _t("Human?") ?>">
</div>
</div>
<div class="mb-3 d-inline-flex justify-content-center w-100">
<button class="login background-none" type="submit" name="Submit"><?php echo _t("Send message") ?></button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</section>