28 lines
1.4 KiB
HTML
28 lines
1.4 KiB
HTML
<form class="{{cssClass}}" autocomplete="off">
|
|
<header class="sheet-header">
|
|
<img class="profile-img" src="{{data.img}}" data-edit="img" title="{{data.name}}"/>
|
|
<h1 class="charname"><input name="name" type="text" value="{{data.name}}" placeholder="Name"/></h1>
|
|
</header>
|
|
{{!-- Sheet Body --}}
|
|
<section class="sheet-body">
|
|
{{!-- Attributes --}}
|
|
<article class="attributes">
|
|
<label class="attribute">
|
|
{{localize 'chiaroscuro.arcane.application'}}
|
|
<input type="text" name="system.application" value="{{data.system.application}}" placeholder="compétence1, catégorie2" />
|
|
</label>
|
|
<label class="attribute">
|
|
{{localize 'chiaroscuro.arcane.bonus'}}
|
|
<input class="select-on-focus" type="number" name="system.bonus" value="{{data.system.bonus}}" data-dtype="Number" min="0" placeholder="3" readonly />
|
|
</label>
|
|
</article>
|
|
{{!-- Description --}}
|
|
<article class="infos">
|
|
<fieldset>
|
|
<legend class="text-block-header">{{localize 'l5r5e.sheets.description'}}</legend>
|
|
{{editor data.enrichedHtml.description target="system.description" button=true owner=owner editable=editable engine="prosemirror" collaborate=false}}
|
|
</fieldset>
|
|
</article>
|
|
</section>
|
|
</form>
|