Modal

Below is a basic example for a modal. Please refer to the Bootstrap documentation for more information.

<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal">
    Bjud in användare
</button>

<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
    <div class="modal-dialog" role="document">
        <div class="modal-content">
            <div class="modal-header">
                <h2 class="modal-title" id="exampleModalLabel">Bjud in användare</h2>
                <button type="button" class="close" data-dismiss="modal" aria-label="Close">
                </button>
            </div>
            <div class="modal-body">
                <form style="max-width: 450px;">
                    <div class="form-group">
                        <label for="exampleName">Namn</label>
                        <input type="text" class="form-control" id="exampleName">
                    </div>
                    <div class="form-group">
                        <label for="exampleInputEmail1">E-post</label>
                        <input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp">
                        <small id="emailHelp" class="form-text text-muted">Vi kommer inte dela e-postadressen till tredje part.</small>
                    </div>
                </form>
            </div>
            <div class="modal-footer">
                <button type="button" class="btn btn-link" data-dismiss="modal">Avbryt</button>
                <button type="button" class="btn btn-primary">Bjud in</button>
            </div>
        </div>
    </div>
</div>