<form class="{{cssClass}} {{object.sheettype}}" autocomplete="off">

    <div class="dialog-area">
        <div class="headlineGroup splatFont">{{localize object.name}}</div>
    </div>

    <div class="dialog-area">

        {{#if (ne object.typeform "bio")}}
            {{#if (hasSpeciality object actorData.type)}}
                <div class="infobox">
                    <div class="bioInformationArea floating-label-group">
                        <input id="speciality" name="speciality" class="sheet-infoValues editable" type="text" value="{{object.speciality}}" autocomplete="off" autofocus />
                        <span class="floating-label">{{localize "wod.dialog.attribute.speciality"}}</span>
                    </div>            
                </div>
            {{/if}}
        {{/if}}

        {{#if (eq object.typeform "bio")}}
            <div class="infobox">
                <div class="bioInformationArea floating-label-group">
                    <input id="custom" name="custom" class="sheet-infoValues editable" type="text" value="{{object.custom}}" autocomplete="off" autofocus />
                    <span class="floating-label">{{localize "wod.dialog.attribute.customname"}}</span>
                </div>            
            </div>
        {{/if}}

        {{#if (eq object.typeform "ability")}}
            <div class="infobox">
                {{#if object.issecondary}}
                    <div class="bioInformationArea floating-label-group">
                        <input id="label" name="label" class="sheet-infoValues editable" type="text" value="{{object.label}}" autocomplete="off" autofocus />
                        <span class="floating-label">{{localize "wod.dialog.attribute.abilityname"}}</span>
                    </div>
                {{else}}
                    <div class="bioInformationArea floating-label-group">
                        <input id="altlabel" name="altlabel" class="sheet-infoValues editable" type="text" value="{{object.altlabel}}" autocomplete="off" autofocus />
                        <span class="floating-label">{{localize "wod.dialog.attribute.altname"}}</span>
                    </div>
                {{/if}}

                <div class="bioInformationArea floating-label-group">
                    <input id="speciality" name="speciality" class="sheet-infoValues editable" type="text" value="{{object.speciality}}" autocomplete="off" autofocus />
                    <span class="floating-label">{{localize "wod.dialog.attribute.speciality"}}</span>
                </div>
            </div>
        {{/if}}

        {{#if (eq object.typeform "sphere")}}
            <div class="infobox">
                {{localize "wod.dialog.attribute.techonocracy"}}
                <input id="technocracy" name="technocracy" type="checkbox" {{isChecked object.istechnocracy}}></input></div>
            </div>
        {{/if}}

        <div class="centerText">
            <button id="actionButton" class="button fullSplatColor pointer actionbutton dialog-two-button">{{#if object.close}}{{localize "wod.dialog.close"}}{{else}}{{localize "wod.dialog.save"}}{{/if}}</button>
        </div>
    </div>    

</form>