django-oidc-provider/example_project/provider_app/templates/home.html
2015-08-18 18:04:59 -03:00

20 lines
806 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% load staticfiles %}
{% block content %}
<div class="hero">
<div class="ui stackable page grid">
<div class="five wide column">
<center><img class="ui image" src="{% static 'img/oidc.png' %}"></center>
</div>
<div class="eleven wide column">
<h1>Welcome!</h1>
<p>This package help you providing all the endpoints, data and logic needed to add <u>OpenID Connect</u> capabilities to your Django projects.</p>
<a href="https://github.com/juanifioren/django-oidc-provider" target="_BLANK" class="ui labeled icon blue large button"><i class="github alternate icon"></i> View on Github</a>
</div>
</div>
</div>
{% endblock %}