-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathazure_create_group.html
More file actions
27 lines (25 loc) · 983 Bytes
/
azure_create_group.html
File metadata and controls
27 lines (25 loc) · 983 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
<script type="text/javascript">
RED.nodes.registerType('azure_create_group',{
category: 'authomize_azure',
color: '#a6bbcf',
defaults: {
name: {value: "Azure - Create group"},
auth: { type: 'azure_config', required: true },
},
inputs:2,
outputs:1,
});
</script>
<script type="text/html" data-template-name="azure_create_group">
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
<input type="text" id="node-input-name" placeholder="Name">
</div>
<div class="form-row">
<label for="node-input-auth"><i class="fa fa-cogs"></i> AzureAD Credentials</label>
<input type="text" id="node-input-auth" placeholder="auth">
</div>
</script>
<script type="text/html" data-help-name="azure_create_group">
<p>Creates a group in Azure with provided nams and description</p>
</script>