bf83fb219c39c9ecf3f64a4da2d97a59742d1ded
[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         </div>
16
17         <div class="form-group">
18             <label for="meta">Metadata file:</label>
19             <input type="file" name="meta" id="file"/>
20         </div>
21
22         <button id="submit" class="btn btn-primary" name="submit" type="submit" value="Submit">
23             Save
24         </button>
25         <a href="{{ backurl }}" class="btn btn-default" title="Back">Back</a>
26         </form>
27     </div>
28 {% endblock %}