Add tooltips to SAML forms
[cascardo/ipsilon.git] / templates / admin / providers / saml2_sp_new.html
1 {% extends "master-admin.html" %}
2 {% block main %}
3     <h2>{{ title }}</h2>
4     {% if message %}
5     <div class="alert alert-{{message_type}}">
6         <p>{{ message }}</p>
7     </div>
8     {% endif %}
9     <div id="options">
10         <form role="form" id="{{ name }}" action="{{ action }}" method="post" enctype="multipart/form-data">
11
12         <div class="form-group">
13             <label for="name">Name:</label>
14             <input type="text" class="form-control" name="name" value=""
15                    title="A nickname used to easily identify the Service Provider.
16                           Only alphanumeric characters and spaces are accepted"/>
17         </div>
18
19         <div class="form-group">
20             <label for="meta">Metadata file:</label>
21             <input type="file" name="meta" id="file"
22                    title="The metadata file generated by the Service Provider"/>
23         </div>
24
25         <button id="submit" class="btn btn-primary" name="submit" type="submit" value="Submit">
26             Save
27         </button>
28         <a href="{{ backurl }}" class="btn btn-default" title="Back">Back</a>
29         </form>
30     </div>
31 {% endblock %}