n_oct/themes/nurgul/pages/contact-us.htm

68 lines
2.4 KiB
HTML
Raw Normal View History

2023-06-17 20:52:33 +00:00
url = "/contact-us"
2023-06-21 19:45:32 +00:00
layout = "mainN"
2023-06-17 20:52:33 +00:00
title = "Contact Us"
2023-06-21 19:45:32 +00:00
[genericForm]
group = "Nurgul Contact Us"
messages_success = "Your form was successfully submitted"
messages_errors = "There were errors with your submission"
mail_enabled = 1
mail_subject = "Contact Us NURGUL"
mail_bcc[] = "shokki.a96@gmail.com"
mail_bcc[] = "isaanna98@gmail.com"
inline_errors = "disabled"
sanitize_data = "disabled"
anonymize_ip = "disabled"
recaptcha_theme = "light"
recaptcha_type = "image"
recaptcha_size = "normal"
emails_date_format = "Y-m-d"
2023-06-17 20:52:33 +00:00
==
{%partial "bread" title='contact.title'|_ %}
{% partial 'contact/content' %}
2023-06-21 19:45:32 +00:00
2023-06-17 20:52:33 +00:00
<!-- CONTACT MESSAGE AREA START -->
<div class="ltn__contact-message-area mt-100 mb-80">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="ltn__form-box contact-form-box box-shadow--- white-bg---">
2023-06-21 19:45:32 +00:00
<h3 class="text-center mb-50">{{'contact.header.txt'|_}}</h3>
<form data-request="{{ genericForm }}::onFormSubmit" id="contact-form">
{{ form_token() }}
<div id="{{ genericForm }}_forms_flash"></div>
2023-06-17 20:52:33 +00:00
<div class="row">
<div class="col-md-5">
2023-06-21 19:45:32 +00:00
<input type="text" name="name" placeholder="{{'form.name'|_}}:">
2023-06-17 20:52:33 +00:00
<input type="email" name="email" placeholder="Email:">
2023-06-21 19:45:32 +00:00
<input type="text" name="phone" placeholder="{{'form.phone'|_}}:">
<input type="text" name="subject" placeholder="{{'form.subject'|_}}:">
2023-06-17 20:52:33 +00:00
</div>
<div class="col-md-7">
2023-06-21 19:45:32 +00:00
<textarea name="message" placeholder="{{'form.enter.message'|_}}"></textarea>
2023-06-17 20:52:33 +00:00
</div>
<div class="col-lg-12">
<div class="btn-wrapper mt-0">
2023-06-21 19:45:32 +00:00
<button class="btn theme-btn-1 btn-effect-1 text-uppercase" type="submit">{{'contact.send.msg'|_}}</button>
2023-06-17 20:52:33 +00:00
</div>
<p class="form-messege mb-0 mt-20"></p>
</div>
</div>
2023-06-21 19:45:32 +00:00
2023-06-17 20:52:33 +00:00
</form>
</div>
</div>
</div>
</div>
</div>
<!-- CONTACT MESSAGE AREA END -->
2023-06-21 19:45:32 +00:00
{% partial 'home/brand' %}