You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
790 B
HTML

<div id="errors" class="col-xs-12" ng-controller="ErrorsController">
<div class="page-header">
<h1>Force Errors</h1>
</div>
<div class="row">
<div ng-include src="'templates/status.html'"></div>
</div>
<div class="row">
<form role="form">
<div class="form-group">
<h3>Kill this instance of the application</h3>
<a ng-click="kill()" class="btn btn-primary btn-lg active" role="button">Kill</a>
</div>
<div class="form-group">
<h3>Force an exception to be thrown from the application</h3>
<a ng-click="throwException()" class="btn btn-primary btn-lg active" role="button">Throw Exception</a>
</div>
</form>
</div>
</div>