mirror of
https://github.com/yuto-yuto/node-red-contrib-password-generator.git
synced 2024-11-21 19:06:44 +01:00
27 lines
973 B
HTML
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>
|