Files
2026-07-01 16:44:17 +03:00

47 lines
1.5 KiB
PHP

<div class="container mt-3 " >
<h3>{{lang('menu','contact')}}</h3>
<form>
<fieldset class="form-fieldset" style="background:#fff;">
<div class="form-group">
<label class="form-label"><span class="form-required">*</span> {{lang('contact','namesurname')}}</label>
<div class="input-icon mb-3"><span class="input-icon-addon"><i class="fe fe-user"></i>
</span>
<input type="text" name="name" class="form-control" id="name" />
</div>
</div>
<div class="form-group">
<label class="form-label"><span class="form-required">*</span> {{lang('contact','mailadress')}}</label>
<div class="input-icon mb-3">
<span class="input-icon-addon">
<i class="fe fe-mail"></i>
</span>
<input type="text" name="email" id="email" class="form-control" placeholder="{{lang('contact','mailplaceholder')}}" />
</div>
</div>
<div class="form-group ">
<label class="form-label"><span class="form-required">*</span> {{lang('contact','messages')}}</label>
<textarea name="message" class="form-control" id="meesage" cols="30" rows="10"></textarea>
</div>
<div class="form-group mt-1">
<label class="form-label">
{{Captcha::create(true);}}
</label>
<input type="text" name="token" id="token" class="form-control" placeholder="{{lang('contact','placeholder')}}">
</div>
<div class="form-group mb mt-3 d-flex justify-content-end">
<button class="btn btn-primary btn-block" id="contactSubmit" type="button"> {{lang('contact','send')}}</button>
</div>
</fieldset>
</form>
</div>