<form>
    <fieldset style="border-radius: 5px;border: 1px solid;margin-bottom: 0.6rem;">
        <legend><i class="fa-duotone fa-circle-info"></i> {{localize "puzzle-locks.how-to"}}</legend>
        <p>{{{puzzleDescription}}}</p>
    </fieldset>
    <fieldset style="border-radius: 5px;border: 1px solid;margin-bottom: 0.6rem;">
        <legend><i class="fa-duotone fa-circle-user"></i> {{localize "puzzle-locks.how-to-player"}}</legend>
        <p>{{{playerInfo}}}</p>
    </fieldset>
    {{#each inputs as |input|}}
    {{#if (eq input.type 'custom')}}
    {{{input.html}}}
    {{else}}
    <div class="form-group {{#if (eq input.type 'textarea')}}stacked command{{/if}}">

        <label for="{{input.name}}">{{{localize input.label}}}</label>

        {{#if (eq input.type 'text')}}
        <input type="text" name="{{input.name}}" placeholder="{{input.placeholder}}" value="{{input.value}}">
        {{/if}}

        {{#if (eq input.type 'textarea')}}
        <textarea type="text" name="{{input.name}}" rows="{{input.rows}}"
            placeholder="{{input.placeholder}}">{{input.value}}</textarea>
        {{/if}}

        {{#if (eq input.type 'number')}}
        <input type="number" min="{{input.min}}" max="{{input.max}}" step="{{input.step}}" name="{{input.name}}"
            placeholder="{{input.placeholder}}" value="{{input.value}}">
        {{/if}}

        {{#if (eq input.type 'checkbox')}}
        <input type="checkbox" name="{{input.name}}" {{#if input.value}}checked{{/if}}>
        {{/if}}

        {{#if (eq input.type 'select')}}
        <select name="{{input.name}}">
            {{#each input.options as |option|}}
            {{#if option.optgroup}}
            {{#if option.optgroup.start}}
            <optgroup label="{{option.optgroup.label}}">
                {{else}}
            </optgroup>
            {{/if}}
            {{else}}
            <option value="{{@key}}" {{#if (eq @key input.value)}}selected{{/if}}>{{option}}</option>
            {{/if}}
            {{/each}}
        </select>
        {{/if}}

        {{#if (eq input.type 'range')}}
        <div class="form-fields">
            <input type="range" min="{{input.min}}" max="{{input.max}}" step="{{input.step}}" name="{{input.name}}"
                value="{{input.value}}">
            <span class="range-value">{{input.value}}</span>
        </div>
        {{/if}}

        {{#if (eq input.type 'color')}}
        <div class="form-fields">
            <color-picker name="{{input.name}}" value="{{input.value}}" default="#000000"></color-picker>
        </div>
        {{/if}}

        {{#if (eq input.type 'filepicker')}}
        <div class="form-fields">
            <file-picker name="{{input.name}}" type="{{input.fpType}}" value="{{input.value}}"></file-picker>
        </div>
        {{/if}}

        {{#if input.notes}}
        <p class="notes">{{input.notes}}</p>
        {{/if}}
    </div>
    {{/if}}
    {{/each}}

    <footer class="flexrow">
        <button type="submit"><i class="far fa-save"></i> {{localize "Save"}}</button>
        <button type="button" id="reset"><i class="far fa-undo"></i> {{localize "Reset"}}</button>
    </footer>

</form>