Здравствуйте, есть уже код модального окна и кнопка. Почти все готово,осталось одно заставить кнопку отправить функционировать. Так вот прошу помочь мне с этим.Нужно чтобы все содержимое отправлялось на указанный мною email адрес в такой форме -
Код:
|
<div class="modal-content">
<form>
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title">Резюме Dota2</h4>
</div>
<div class="modal-body">
<ul>
<li>Требуются бустеры с высоким рейтингом</li>
<li>Ваш соло рейтинг ОТ 5600 MMR</li>
<li>Большое кол-во свободного времени</li>
</ul>
<div class="form-group">
<label for="inputMmr" class="control-label pull-left">Solo MMR</label>
<input type="text" class="form-control" id="inputMmr" name="Solo_MMR" placeholder="Ваш solor mmr">
</div>
<div class="form-group">
<label for="inputMmr" class="control-label pull-left">Ваш возраст</label>
<input type="text" class="form-control" id="inputMmr" name="age" placeholder="Ваш возраст">
</div>
<div class="form-group">
<label for="inputMmr" class="control-label pull-left">Чем вы занимаетесь</label>
<input type="text" class="form-control" id="inputMmr" name="hobby" placeholder="Чем вы занимаетесь">
</div>
<div class="form-group">
<label for="inputMmr" class="control-label pull-left">Сколько часов в день играете</label>
<input type="text" class="form-control" id="inputMmr" name="how_much_time_play" placeholder="Сколько часов в день играете">
</div>
<div class="form-group">
<label for="inputMmr" class="control-label pull-left">Почему хотите получить эту работу</label>
<input type="text" class="form-control" id="inputMmr" name="why_yoo_want" placeholder="Почему хотите получить эту работу">
</div>
<div class="form-group">
<label for="inputMmr" class="control-label pull-left">Ссылка на скриншот с рейтингом из доты</label>
<input type="text" class="form-control" id="inputMmr" name="link" placeholder="Ссылка">
</div>
<div class="form-group">
<label for="inputMmr" class="control-label pull-left">Ссылка на dotabuff</label>
<input type="text" class="form-control" id="inputMmr" name="link" placeholder="Ссылка">
</div>
<div class="form-group">
<label for="inputMmr" class="control-label pull-left">Ссылка на Vkontakte</label>
<input type="text" class="form-control" id="inputMmr" name="vk" placeholder="Ссылка Vk">
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Закрыть</button>
<button type="button" class="btn btn-primary act_send" data-game="dota2">Отправить резюме</button>
</div>
</form>
</div>
|