32 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
{{define "content"}}
 | 
						|
<div>
 | 
						|
        <form method="POST" >
 | 
						|
 | 
						|
            <div class="fixed inset-0 bg-gray-500 bg-opacity-75 transition-opacity"></div>
 | 
						|
        
 | 
						|
            <div class="fixed inset-0 z-10 overflow-y-auto">
 | 
						|
            <div class="flex min-h-full items-end justify-center p-4 text-center sm:items-center sm:p-0">
 | 
						|
 | 
						|
                <div class="relative transform overflow-hidden rounded-lg bg-white px-4 pt-5 pb-4 text-left shadow-xl transition-all sm:my-8 sm:w-full max-w-lg sm:p-6">
 | 
						|
                <div>
 | 
						|
                    <div class="mx-auto flex h-12 w-12 items-center justify-center rounded-co bg-co-blue text-white">
 | 
						|
                    {{.IconSet.Icon "hero:outline/information-circle" "h-6 w-6"}}
 | 
						|
                    </div>
 | 
						|
                    <div class="mt-3 text-center sm:mt-5">
 | 
						|
                        <h3 class="text-lg font-medium leading-6 text-gray-900" id="modal-title">Confirmation de retrait</h3>
 | 
						|
                        <div class="mt-2">
 | 
						|
                            <p class="text-sm text-gray-500">Voulez-vous vraiment retirer ce dignostique ?</p>
 | 
						|
                        </div>
 | 
						|
                    </div>
 | 
						|
                </div>
 | 
						|
                <div class="mt-5 sm:mt-6 sm:grid sm:grid-flow-row-dense sm:grid-cols-2">
 | 
						|
                    <a href="/app/diags/" class="mt-3 inline-flex w-full justify-center rounded-l-2xl border border-gray-300 bg-white px-4 py-2 text-base font-medium text-gray-700 shadow-sm hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-co-blue focus:ring-offset-2 sm:col-start-1 sm:mt-0 sm:text-sm">Annuler</a>
 | 
						|
                    <button  type="submit" class="inline-flex w-full justify-center rounded-r-2xl border border-transparent bg-co-blue px-4 py-2 text-base font-medium text-white shadow-sm hover:bg-co-blue focus:outline-none focus:ring-2 focus:ring-co-blue focus:ring-offset-2 sm:col-start-2 sm:text-sm">Confirmation</button>
 | 
						|
                </div>
 | 
						|
                </div>
 | 
						|
            </div>
 | 
						|
            </div>
 | 
						|
        </form>
 | 
						|
 | 
						|
 </div>
 | 
						|
{{end}} |