mirror of
				https://gitlab.crans.org/bde/nk20
				synced 2025-11-04 01:12:08 +01:00 
			
		
		
		
	Better templates for OAuth2 authentication
Signed-off-by: Yohann D'ANELLO <ynerant@crans.org>
This commit is contained in:
		
							
								
								
									
										29
									
								
								note_kfet/templates/oauth2_provider/authorized-oob.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										29
									
								
								note_kfet/templates/oauth2_provider/authorized-oob.html
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,29 @@
 | 
			
		||||
{% extends "base.html" %}
 | 
			
		||||
 | 
			
		||||
{% load i18n %}
 | 
			
		||||
 | 
			
		||||
{% block title %}
 | 
			
		||||
Success code={{code}}
 | 
			
		||||
{% endblock %}
 | 
			
		||||
 | 
			
		||||
{% block content %}
 | 
			
		||||
    <div class="card">
 | 
			
		||||
        <h3 class="card-header text-center">
 | 
			
		||||
            {% if not error %}
 | 
			
		||||
               {% trans "Success" %}
 | 
			
		||||
            {% else %}
 | 
			
		||||
                {% trans "Error:" %} {{ error.error }}
 | 
			
		||||
            {% endif %}
 | 
			
		||||
        </h3>
 | 
			
		||||
 | 
			
		||||
        <div class="card-body">
 | 
			
		||||
            {% if not error %}
 | 
			
		||||
                <p>{% trans "Please return to your application and enter this code:" %}</p>
 | 
			
		||||
 | 
			
		||||
                <p><code>{{ code }}</code></p>
 | 
			
		||||
            {% else %}
 | 
			
		||||
                <p>{{ error.description }}</p>
 | 
			
		||||
            {% endif %}
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
{% endblock %}
 | 
			
		||||
		Reference in New Issue
	
	Block a user