Created
April 24, 2016 02:36
-
-
Save AlexanderLindsay/bb91af715826f6a321a946e8f5ddc395 to your computer and use it in GitHub Desktop.
The content of a bootstrap modal
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
<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">Basic Modal</h4> | |
</div> | |
<div class="modal-body"> | |
<div class="form-horizontal"> | |
Hello World! | |
@ViewBag.Id | |
</div> | |
</div> | |
<div class="modal-footer"> | |
<button type="button" class="btn btn-success" data-dismiss="modal">OK</button> | |
<button type="button" class="btn btn-default" data-dismiss="modal">NO</button> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment