2021-11-23 06:47:27 +03:00

44 lines
1.4 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 className="container wide">
<h2 className="section_title">Купить в лизинг?</h2>
<div className="order_form">
<div className="order_email">
<p>Напишите на <a href="mailto:">info@evoleasing.ru</a> или заполните форму</p>
</div>
<form>
<div className="form_field">
<input type="text" value="" placeholder="Имя" onChange={ () => {} }/>
</div>
<div className="form_field">
<input type="tel" value="" placeholder="Телефон" onChange={ () => {} }/>
</div>
<div className="form_field">
<input type="email" value="" placeholder="E-mail" onChange={ () => {} }/>
</div>
<div className="form_field">
<input type="text" value="" placeholder="Организация" onChange={ () => {} }/>
</div>
<div className="policy">
<input type="checkbox" name="policy" id="policy" hidden checked onChange={ () => {} }/>
<label htmlFor="policy">Даю свое согласие на обработку моих персональных данных</label>
</div>
<button className="button">Отправить</button>
</form>
</div>
</div>
</section>
)
}
}