43 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
	
| {% extends "mnfapp/base.html" %}
 | |
| {% load static %}
 | |
| {% block content %}
 | |
|     <style>
 | |
|         
 | |
|         .thanks{
 | |
|             position: absolute;
 | |
|             transform: translate(-50%,-50%);
 | |
|             top: 50%;
 | |
|             left: 50%;
 | |
|         }
 | |
|         .thanks h1{
 | |
|             text-align: center;
 | |
|         }
 | |
|         .page-container3{
 | |
|             display: flex;
 | |
|             width: 80vw;
 | |
|             margin:auto;
 | |
|         }
 | |
|         .input{
 | |
|             display: flex;
 | |
|         }
 | |
|         .input input{
 | |
|             margin-left: 0.3em;
 | |
|             margin-right: 0.3em;
 | |
|         }
 | |
|         .page-container3{
 | |
|             margin-top:1em;
 | |
|             margin-bottom: 1em;
 | |
|             border: solid black 1px;
 | |
|             padding: 1em;
 | |
|         }
 | |
| 
 | |
|     </style>
 | |
| 
 | |
| {% if user.is_authenticated %}
 | |
| <div class="thanks">
 | |
|     <h1>Payment Failed</h1>
 | |
|     <h4 style="text-align: center;"><button class="btn btn-primary" style="color: white;"><a href="{% url 'payment' %}">Retry</a></button></h4>
 | |
| </div>
 | |
| 
 | |
| {%endif%}
 | |
| {%endblock%} |