Created
January 11, 2014 17:00
-
-
Save ddsilva/8373480 to your computer and use it in GitHub Desktop.
modal solicitação senha
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="modal-password" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="esqueci-minha-senha" aria-hidden="true"> | |
| <div class="modal-dialog"> | |
| <div class="modal-content"> | |
| <div class="modal-header"> | |
| <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> | |
| <h4 class="modal-title" id="esqueci-minha-senha">Esqueci minha senha</h4> | |
| </div> | |
| <div class="modal-body"> | |
| <div class="form-group"> | |
| <label for="email-forgot" class="col-sm-2 control-label">Meu email é: </label> | |
| <div class="col-sm-4"> | |
| <input type="email" class="form-control" id="email-forgot" name="email-forgot"> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="modal-footer"> | |
| <button type="button" class="btn btn-default" data-dismiss="modal">Voltar</button> | |
| <button type="button" class="btn btn-primary" id="request-password">Continuar</button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment