-
-
Notifications
You must be signed in to change notification settings - Fork 309
Expand file tree
/
Copy pathapi.html
More file actions
31 lines (27 loc) · 754 Bytes
/
Copy pathapi.html
File metadata and controls
31 lines (27 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{% extends "rest_framework/base.html" %}
{% block style %}
{{ block.super }}
<style>
body {background: none;}
.navbar {background: #363636; border-top: 3px solid #3298dc;}
.navbar-inverse .navbar-brand {color: white;}
.booleanwidget {width: 90%;}
</style>
{% endblock %}
{% block title %}
VulnerableCode.io REST API
{% endblock %}
{% block branding %}
<span class="navbar-brand">
VulnerableCode<span class="nexb-orange">.</span>io REST API
</span>
{% endblock %}
{% block userlinks %}
<li class="navbar-link">
<a href="/api/docs/">API Documentation</a>
</li>
<li class="navbar-link">
<a href="/">Back to app</a>
</li>
{{ block.super }}
{% endblock %}