kong-dashboard
Version:
Web UI for managing Kong gateway
34 lines (31 loc) • 1.11 kB
HTML
<div class="container">
<h3 class="header">{{ vm.title }}</h3>
<div class="row">
<div class="col s5">
<div class="card-panel teal">
<p class="white-text">
When adding a Plugin on top of an API, every request made by a client will be evaluated by
the Plugin's configuration you setup.
</p>
<p class="white-text">
You can checkout the kong documentation to see the <a href="https://docs.konghq.com/hub/" target="_blank">
list of available plugins</a>, as well as their configuration settings.
</p>
</div>
</div>
<form name="addPlugin" class="col s7" novalidate ng-submit="vm.save()">
<div class="row">
<object-properties
schema="vm.schema"
object="vm.plugin"
errors="vm.errors"
></object-properties>
<div class="input-field col s12" ng-show="vm.plugin_schema_loaded">
<button type="submit" class="waves-effect waves-light btn right">
{{ vm.action }}
</button>
</div>
</div>
</form>
</div>
</div>