Created
April 26, 2018 09:35
-
-
Save madeas/1d0c05091c66bfed44c9f666e67be8a5 to your computer and use it in GitHub Desktop.
This file contains 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
<form id="form1" method="POST"> | |
<div class="form-row"> | |
<div class="col"> | |
<input type="hidden" name="formData" value="Заголовок формы"> | |
<input type="text" name="name" class="name form-control" placeholder="Представьтесь, пожалуйста"> | |
</div> | |
</div> | |
<div class="form-group"> | |
<label for="recipient-mail" class="col-form-label">Ваш email:</label> | |
<input type="text" name="email" id="recipient-mail" class="email form-control" placeholder="[email protected]"> | |
</div> | |
<div class="form-group"> | |
<label for="recipient-phone" class="col-form-label">Ваш телефон:</label> | |
<input type="text" name="phone" id="recipient-phone" class="phone form-control" placeholder="+7"> | |
</div> | |
<div class="form-group"> | |
<label for="message-text" class="col-form-label">Сообщение:</label> | |
<textarea name="message" id="message-text" class="message form-control" placeholder=""></textarea> | |
</div> | |
<button type="submit" class="btn btn-primary">Заказать</button> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment