I have been tasked with creating a modal, but I was told that the Bootstrap library will not be available to me in this build. Is it possible to build a modal without Bootstrap classes? If so, can someone guide me to some documentation?
This is what I have so far:
<div class="modal" id="myModal">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="myModalLabel"><i class="fa fa-envelope"></i> </h4>
</div><!-- modal-header -->
<div class="modal-body">
<p>Select the options below to get the right coverage type for you.</p>
<form class="form-inline" role="form">
<div>
</div>
</form>
</div><!-- modal-body -->
</div><!-- modal-content -->
</div><!-- modal-dialog -->
</div><!-- modal -->
My next step was to put in there:
<div class="form-group"></div>
but that is a Bootstrap class, what is the alternative?