-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbitpool_cloud_settings.html
More file actions
28 lines (25 loc) · 981 Bytes
/
bitpool_cloud_settings.html
File metadata and controls
28 lines (25 loc) · 981 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
<!--
MIT License Copyright 2021-2024 - Bitpool Pty Ltd
-->
<script type="text/javascript">
RED.nodes.registerType('Bitpool-Cloud-Settings', {
category: 'config',
defaults: {
name: {value:""},
api_key: {value:""}
},
label: function () {
return this.name || "Bitpool-Cloud-Settings";
}
});
</script>
<script type="text/html" data-template-name="Bitpool-Cloud-Settings">
<div class="form-row">
<label for="node-config-input-name"><i class="icon-tag"></i><span data-i18n="bitpool-uploader.label.name"></span> Name</label>
<input type="text" id="node-config-input-name" placeholder="Config Name">
</div>
<div class="form-row">
<label for="node-config-input-api_key"><i class="icon-tag"></i> <span data-i18n="bitpool-uploader.label.api_key"></span>Api Key</label>
<input type="text" id="node-config-input-api_key" placeholder="Enter Bitpool API Key">
</div>
</script>