forked from openiap/opencore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSocket.html
More file actions
42 lines (39 loc) · 1.47 KB
/
Copy pathSocket.html
File metadata and controls
42 lines (39 loc) · 1.47 KB
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
32
33
34
35
36
37
38
39
40
41
42
<div class="starter-template">
<h1 translate lib="web">sockets</h1>
</div>
<form ng-submit="ctrl.submit()" class="form-horizontal" role="form" autocomplete="off" ng-hide="ctrl.showjson==true">
<section>
<div class="form-group">
<label class="col-sm-3 control-label">queuename:</label>
<div class="col-sm-9">
<input ng-model="ctrl.queuename" class="form-control input-md" ng-disabled="ctrl.loading==true" />
</div>
</div>
</section>
<section>
<div class="form-group">
<label class="col-sm-3 control-label">message:</label>
<div class="col-sm-9">
<input ng-model="ctrl.message" class="form-control input-md" ng-disabled="ctrl.loading==true" />
</div>
</div>
</section>
<section>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" ng-disabled="ctrl.loading==true" class="btn btn-secondary" translate
lib="web">save</button>
</div>
</div>
</section>
<section>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="button" class="btn btn-secondary" ng-click="ctrl.EnsureNoderedInstance()">Ensure</button>
<button type="button" class="btn btn-secondary" ng-click="ctrl.RestartNoderedInstance()">Restart</button>
<button type="button" class="btn btn-secondary" ng-click="ctrl.DeleteNoderedInstance()">Delete</button>
</div>
</div>
</section>
</form>
<pre>{{ ctrl.messages }}</pre>