62 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
	
| {% extends "mnfapp/base.html" %}
 | |
| {% load static %}
 | |
| {% block content %}
 | |
|     <meta charset="UTF-8">
 | |
|     <meta http-equiv="X-UA-Compatible" content="IE=edge">
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | |
|     <title>transaction</title>
 | |
|     <script src="https://checkout.razorpay.com/v1/checkout.js"></script>
 | |
|     <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
 | |
| 
 | |
| 
 | |
|     <style>
 | |
|         .sample-container{
 | |
|             width:60vw;
 | |
|             margin: auto;
 | |
|             position: absolute;
 | |
|             top: 50%;
 | |
|             left: 50%;
 | |
|             transform: translate(-50%,-50%);
 | |
|             border-radius: 10px;
 | |
|             padding: 1em;
 | |
|             box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
 | |
|         }
 | |
|         .sample-container input{
 | |
|             margin: auto;
 | |
|             width: 25vw;
 | |
|             margin-top: 5px;
 | |
|             margin-bottom: 5px;
 | |
|         }
 | |
|         .sample-container button{
 | |
|             width: 20vw;
 | |
|             margin:auto;
 | |
|             text-align: center;
 | |
|             margin-left: 20vw;
 | |
|             margin-top: 1em;
 | |
|         }
 | |
|         #h1{
 | |
|             text-align: center;
 | |
|             /* color: linear-gradient(#ee364d , rgb(0, 89, 255)); */
 | |
|             background: -webkit-linear-gradient(#ee364d, rgb(56, 109, 206));
 | |
|             -webkit-background-clip: text;
 | |
|             -webkit-text-fill-color: transparent;
 | |
|         }
 | |
|         .sample-container img{
 | |
|             margin-left: 45%;
 | |
|         }
 | |
|     </style>
 | |
|     <div>
 | |
| 
 | |
|         <div>
 | |
|             <div class="sample-container">
 | |
|                 <img style="margin-top: 30px;" src="{% static 'tick.png' %}" width="40px" height="40px" alt=""> <br><br>
 | |
|                 <h2 id="h1">
 | |
|                     Transaction Successful
 | |
|                 </h2>
 | |
|                 <a href="/members-home">Go To Home</a>
 | |
|             </div>
 | |
|         </div>
 | |
|         
 | |
|     </div>
 | |
| 
 | |
| {%endblock%} |