Я делаю пользовательскую модальность Bootstrap, включающую некоторые компоненты формы, такие как select Tag и кнопки, и я все еще учусь.
вот что я сделал до сих пор: найди здесь
код:
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModalLong">
Launch demo modal
</button>
<!-- Modal -->
<div class="modal fade" id="exampleModalLong" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">CUSTOM LINK MAKER</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<h5>Here you can make a custom link to send.</h5>
<small>(All custom links will stay active) </small>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
Чего я пытаюсь достичь: найти здесь
Проблема: у меня возникла проблема с настройкой макета.знать, как кодировать макет и добавлять компоненты формы в модал.если бы кто-то мог предложить, это было бы очень полезно.Спасибо