Created
June 17, 2017 11:27
-
-
Save kopylovvlad/4cb7cc672137ef915b958eb5fd8ca303 to your computer and use it in GitHub Desktop.
erb form
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Просто загрузка страницы --> | |
<% if @status == :hello %> | |
<form method="POST" action="/" style="max-width: 450px;"> | |
<div class="form-group"> | |
<label for="exampleInputFIO1">ФИО</label> | |
<input type="text" class="form-control" name="name" id="exampleInputFIO1" placeholder="Иванов Иван Иванович"> | |
</div> | |
<div class="form-group"> | |
<label for="exampleInputEmail1">Email</label> | |
<input type="email" class="form-control" name="email" id="exampleInputEmail1" placeholder="[email protected]"> | |
</div> | |
<div class="form-group"> | |
<label for="exampleInputPhone1">Номер телефона</label> | |
<input type="phone" class="form-control" name="phone" id="exampleInputPhone1" placeholder="+7(915)435-22-55"> | |
</div> | |
<button type="submit" class="btn btn-outline btn-xl page-scroll">Отправить</button> | |
</form> | |
<% end %> | |
<!-- Оповещение об удачной отправке данных --> | |
<% if @status == :success %> | |
<p>Ура! Данные получены</p> | |
<% end %> | |
<!-- Оповещение об ошибке при отправке данных --> | |
<% if @status == :error %> | |
<p> | |
Возникла ошибка при сохранении данных. | |
<br> | |
Повторите действие позже | |
</p> | |
<% end %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment