Created
August 6, 2015 16:14
-
-
Save Andergraw/80c41af4a613b287181b to your computer and use it in GitHub Desktop.
BS3: basic contact form (ESP) #sublime
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
<div id="contactform"> | |
<form class="form-horizontal" action="send_form_email.php" method="POST" role="form"> | |
<div class="form-group"> | |
<label for="name" class="col-sm-2 control-label" id="name">Nombre*</label> | |
<div class="col-sm-10"> | |
<input type="text" class="form-control" id="" placeholder="Miguel de Cervantes"> | |
</div> | |
</div> | |
<div class="form-group"> | |
<label for="email" class="col-sm-2 control-label" id="name">Email*</label> | |
<div class="col-sm-10"> | |
<input type="email" class="form-control" id="" placeholder="[email protected]"> | |
</div> | |
</div> | |
<div class="form-group"> | |
<label for="tel" class="col-sm-2 control-label" id="telephone">Teléfono</label> | |
<div class="col-sm-10"> | |
<input type="text" class="form-control" id="" placeholder="659873478"> | |
</div> | |
</div> | |
<div class="form-group"> | |
<label for="comments" class="col-sm-2 control-label" id="comments">Mensaje*</label> | |
<div class="col-sm-10"> | |
<textarea class="form-control" id="comments" rows="3" placeholder="¡Escríbenos!"></textarea> | |
</div> | |
</div> | |
<button type="submit" class="btn btn-primary pull-right">Enviar</button> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment