I have 2 buttons and I want them in the same line.
The buttons come one below the other because one is inside an <a>
element and one is inside a form
Here is the code
<a href="update/"><button class="btn btn-default">Update Contact</button></a>
<form action="" method="post">
{% csrf_token %}
<button type="submit" class="btn btn-default">Delete Contact</button>
</form>
How can I get them in the same line?
Fiddle - http://www.bootply.com/114827