foundryvtt-beam-saber/templates/items/class.html
Olivier Grech 4d4f071417
Move profile image to the left (#93)
* Move profile image to the left on actor and crew sheets

* Remove profile-img CSS class
2020-12-16 11:52:18 +03:00

25 lines
1 KiB
HTML

<form class="{{cssClass}}" autocomplete="off">
<header class="sheet-header">
<img src="{{item.img}}" data-edit="img" title="{{item.name}}"/>
<div class="header-fields">
<h1 class="charname"><input name="name" type="text" value="{{item.name}}" placeholder="{{localize 'BITD.Name'}}"/></h1>
</div>
</header>
<section class="flex-vertical">
<label class="label-stripe">{{localize "BITD.Description"}}</label>
<textarea name="data.description">{{data.description}}</textarea>
<label class="label-stripe">{{localize "BITD.ExpClues"}}</label>
<div><i>- {{localize "BITD.ClassExpClue1"}}</i></div>
<div>{{localize "BITD.ClassExpClueDescription"}}</div>
<div><i>- {{localize "BITD.ClassExpClue2"}}</i></div>
<div><i>- {{localize "BITD.ClassExpClue3"}}</i></div>
<textarea name="data.experience_clues">{{data.experience_clues}}</textarea>
{{isG}}
<label class="label-stripe">{{localize "BITD.Logic"}}</label>
<textarea name="data.logic">{{data.logic}}</textarea>
</section>
</form>