Commit 21dc9b1f authored by Mark Otto's avatar Mark Otto

fix broken buttons

parent e1dfe01c
......@@ -64,7 +64,7 @@ Add `.form-inline` to your `<form>` or a parent element for left-aligned and inl
<label for="exampleInputEmail2">Email</label>
<input type="email" class="form-control" id="exampleInputEmail2" placeholder="jane.doe@example.com">
</div>
<button type="submit" class="btn btn-default">Send invitation</button>
<button type="submit" class="btn btn-primary">Send invitation</button>
</form>
</div>
{% endexample %}
......@@ -86,7 +86,7 @@ Add `.form-inline` to your `<form>` or a parent element for left-aligned and inl
<input type="checkbox"> Remember me
</label>
</div>
<button type="submit" class="btn btn-default">Sign in</button>
<button type="submit" class="btn btn-primary">Sign in</button>
</form>
{% endexample %}
......@@ -315,7 +315,7 @@ When you need to place plain text next to a form label within a form, use the `.
<label for="inputPassword2" class="sr-only">Password</label>
<input type="password" class="form-control" id="inputPassword2" placeholder="Password">
</div>
<button type="submit" class="btn btn-default">Confirm identity</button>
<button type="submit" class="btn btn-primary">Confirm identity</button>
</form>
{% endexample %}
......
......@@ -280,7 +280,7 @@ Have a bunch of buttons that all trigger the same modal, just with slightly diff
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Send message</button>
</div>
</div>
......@@ -316,7 +316,7 @@ Have a bunch of buttons that all trigger the same modal, just with slightly diff
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Send message</button>
</div>
</div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment