node-red-contrib-password-g.../lib/PasswordGeneratorNode.html
2021-07-11 09:57:55 +02:00

27 lines
973 B
HTML

<script type="text/html" data-template-name="password-generator">
<div class="form-row">
<label for="node-input-key"><i class="fa fa-key"></i> Key prop</label>
<input type="text" id="node-input-key" placeholder="payload.key">
</div>
<div class="form-row">
<label for="node-input-size"><i class="fa fa-database"></i> Size</label>
<input type="text" id="node-input-size">
</div>
<div class="form-row">
<label for="node-input-to"><i class="fa fa-database"></i> to</label>
<input type="text" id="node-input-to">
</div>
</script>
<script type="text/html" data-help-name="password-generator">
<p>Send incoming message only when the value of the specified key path changes.</p>
<h3>Configuration</h3>
<dl class="message-properties">
<dt>size</dt>
<dd> The output size of the string. </dd>
<dt>to</dt>
<dd> The property to set password. </dd>
</dl>
</script>