2021-11-11 13:40:44 +03:00

44 lines
1.3 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React from "react";
export default class FormRequest extends React.Component
{
constructor(props)
{
super(props);
}
render()
{
return (
<section id="order">
<div class="container wide">
<h2 class="section_title">Купить в лизинг?</h2>
<div class="order_form">
<div class="order_email">
<p>Напишите на <a href="mailto:">info@evoleasing.ru</a> или заполните форму</p>
</div>
<form>
<div class="form_field">
<input type="text" value="" placeholder="Имя" />
</div>
<div class="form_field">
<input type="tel" value="" placeholder="Телефон" />
</div>
<div class="form_field">
<input type="email" value="" placeholder="E-mail" />
</div>
<div class="form_field">
<input type="text" value="" placeholder="Организация" />
</div>
<div class="policy">
<input type="checkbox" name="policy" id="policy" hidden checked />
<label for="policy">Даю свое согласие на обработку моих персональных данных</label>
</div>
<button class="button">Отправить</button>
</form>
</div>
</div>
</section>
)
}
}