foundryvtt-beam-saber/templates/items/simple.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

15 lines
583 B
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>
{{!-- Sheet Body --}}
<section class="sheet-body flex-vertical">
<label class="label-stripe">{{localize "BITD.Description"}}</label>
<textarea rows="20" name="data.description">{{data.description}}</textarea>
</section>
</form>