OLD | NEW |
(Empty) | |
| 1 {% extends "base.html" %} |
| 2 {% block extra_head %} |
| 3 <style> |
| 4 .message { |
| 5 color: #990000; |
| 6 font-weight: bold; |
| 7 } |
| 8 </style> |
| 9 {% endblock %} |
| 10 |
| 11 {% block content %} |
| 12 <div class="container-fluid"> |
| 13 <div class="row-fluid"> |
| 14 <p> |
| 15 <div class="col-md-10"> |
| 16 <p><a href="/admin/">< Admin</a> |
| 17 <p><div class="message">{{ message }}</div> |
| 18 |
| 19 <p><form method="POST"> |
| 20 Endpoint URL: |
| 21 <p><input type="text" size="80" name="url" value="{{ url }}"> |
| 22 <br> |
| 23 Credentials JSON: |
| 24 <p><textarea rows="20" cols="80" name="credentials"> |
| 25 {{ credentials }} |
| 26 </textarea> |
| 27 <br> |
| 28 Scopes (one per line): |
| 29 <p><textarea rows="5" cols="80" name="scopes"> |
| 30 {{ scopes }} |
| 31 </textarea> |
| 32 <br> |
| 33 Additional HTTP headers (JSON). Leave empty if none: |
| 34 <p><textarea rows="5" cols="80" name="headers"> |
| 35 {{ headers }} |
| 36 </textarea> |
| 37 <br> |
| 38 <input type="submit"> |
| 39 </form> |
| 40 </div> |
| 41 </div> |
| 42 </div> |
| 43 {% endblock %} |
OLD | NEW |