summaryrefslogtreecommitdiffstats
path: root/templates/admin/providers/saml2_sp.html
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2014-05-27 17:01:38 -0400
committerSimo Sorce <simo@redhat.com>2014-05-29 09:49:14 -0400
commit57152208ec0aabab7923a414a118fe0ce1cdb4ce (patch)
treecb6e0876df9755b21e3820d37017f452e7580315 /templates/admin/providers/saml2_sp.html
parent4d45b3dbc7d7549e8f87fe4ab8b11c76d6d4b72e (diff)
downloadipsilon-57152208ec0aabab7923a414a118fe0ce1cdb4ce.tar.gz
ipsilon-57152208ec0aabab7923a414a118fe0ce1cdb4ce.tar.xz
ipsilon-57152208ec0aabab7923a414a118fe0ce1cdb4ce.zip
Add tooltips to SAML forms
This should make clearer what is expected in each field. Signed-off-by: Simo Sorce <simo@redhat.com>
Diffstat (limited to 'templates/admin/providers/saml2_sp.html')
-rw-r--r--templates/admin/providers/saml2_sp.html14
1 files changed, 10 insertions, 4 deletions
diff --git a/templates/admin/providers/saml2_sp.html b/templates/admin/providers/saml2_sp.html
index 0b7385b..84e46a9 100644
--- a/templates/admin/providers/saml2_sp.html
+++ b/templates/admin/providers/saml2_sp.html
@@ -17,7 +17,8 @@
<div class="form-group">
<label for="name">Name:</label>
{% if user.name == data.owner or user.is_admin %}
- <input type="text" class="form-control" name="name" value="{{ data.name }}"/>
+ <input type="text" class="form-control" name="name" value="{{ data.name }}"
+ title="A nickname used to easily identify the Service Provider. Only alphanumeric characters [A-Z,a-z,0-9] and spaces are accepted"/>
{% else %}
{{ data.name }}
{% endif %}
@@ -26,7 +27,9 @@
<div class="form-group">
<label for="default_nameid">Default NameID:</label>
{% if user.is_admin -%}
- <input type="text" class="form-control" name="default_nameid" value="
+ <input type="text" class="form-control" name="default_nameid"
+ title="The default nameid type returned to the Service Provider"
+ value="
{%- endif -%}
{{ data.default_nameid }}
{%- if user.is_admin -%}
@@ -37,7 +40,9 @@
<div class="form-group">
<label for="allowed_nameids">Allowed NameIDs:</label>
{% if user.is_admin -%}
- <input type="text" class="form-control" name="allowed_nameids" value="
+ <input type="text" class="form-control" name="allowed_nameids"
+ title="The allowed nameid types that can be returned to a Service Provider"
+ value="
{%- endif -%}
{{ data.allowed_nameids|join(', ') }}
{%- if user.is_admin -%}
@@ -48,7 +53,8 @@
{% if user.is_admin %}
<div class="form-group">
<label for="owner">User Owner:</label>
- <input type="text" class="form-control" name="owner" value="{{ data.owner }}"/>
+ <input type="text" class="form-control" name="owner" value="{{ data.owner }}"
+ title="The user that owns the Service Provider"/>
</div>
{% endif %}