Launch demo modal
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | <!-- Button trigger modal --> < a data-toggle = "modal" href = "#myModal" class = "btn btn-primary btn-lg" >Launch demo modal</ a > <!-- Modal --> < div class = "modal fade" id = "myModal" tabindex = "-1" role = "dialog" aria-labelledby = "myModalLabel" 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" >Modal title</ h4 > </ div > < div class = "modal-body" > ... </ div > < div class = "modal-footer" > < button type = "button" class = "btn btn-default" data-dismiss = "modal" >Close</ button > < button type = "button" class = "btn btn-primary" >Save changes</ button > </ div > </ div > <!-- /.modal-content --> </ div > <!-- /.modal-dialog --> </ div > <!-- /.modal --> |