django-oidc-provider/example/app/templates/home.html

15 lines
748 B
HTML
Raw Normal View History

2016-09-07 19:02:31 +00:00
{% extends "base.html" %}
{% load i18n staticfiles %}
{% block content %}
2018-03-23 20:06:44 +00:00
<section>
2016-09-07 19:02:31 +00:00
<div class="container">
<h1 class="jumbotron-heading">{% trans 'Welcome' %}{% if user.is_authenticated %} {{ user.username }}{% endif %}!</h1>
<p class="lead text-muted">{% trans 'This is an example of an OpenID Connect 1.0 Provider. Built with the <a href="https://www.djangoproject.com/" target="_BLANK"><u>Django Framework</u></a> and <a href="https://github.com/juanifioren/django-oidc-provider" target="_BLANK"><u>django-oidc-provider</u></a> package.' %}</p>
<p><a href="{% url 'admin:index' %}oidc_provider/client/" class="btn btn-primary btn-lg">{% trans 'Create your clients' %}</a></p>
</div>
</section>
{% endblock %}