Boot custom CSS, and put some base, standard css in its place. Shame I did not start with fresh Bootstrap4, but oh well. Some more templates could be made to make this less messy, which would be good.
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			501 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			501 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "symposion/proposals/base.html" %}
 | 
						|
 | 
						|
{% block page_title %}Leaving {{ proposal.title }}{% endblock %}
 | 
						|
{% block head_title %}Leaving {{ proposal.title }}{% endblock %}
 | 
						|
 | 
						|
{% block body %}
 | 
						|
    <form class="form-horizontal" method="POST" action="" enctype="multipart/form-data">
 | 
						|
        {% csrf_token %}
 | 
						|
        <p>Are you sure you wish to leave as a speaker on <b>{{ proposal.title }}</b>?</p>
 | 
						|
        <input type="submit" class="btn btn-primary" value="I am sure" />
 | 
						|
    </form>
 | 
						|
{% endblock %}
 |