diff options
-rw-r--r-- | templates/djangosaml2/wayf.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/djangosaml2/wayf.html b/templates/djangosaml2/wayf.html index d905b37..9eeb484 100644 --- a/templates/djangosaml2/wayf.html +++ b/templates/djangosaml2/wayf.html @@ -4,12 +4,12 @@ {% block content %} <h1>Authentication Required</h1> <p>Please select your <strong>Identity Provider</strong> from the following list:</p> - <form action="{% url djangosaml2.views.login %}" method="GET"> + <form class="form-inline" action="{% url djangosaml2.views.login %}" method="GET"> <select id="idp" name="idp"> {% for url, idp in available_idps %} <option value="{{url}}">{{idp.0}}</option> {% endfor %} </select> - <input type="submit" value="Select"/> + <input class="btn btn-success" type="submit" value="Select"/> </form> {% endblock %}
\ No newline at end of file |