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

21 lines
973 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">
<textarea name="data.description">{{data.description}}</textarea>
</section>
<div class="flex-vertical">
<label class="label-stripe">{{localize "BITD.AbilityPrice"}}</label>
<input id="ability-price" type="text" name="data.price" value="{{data.price}}" placeholder="{{localize 'BITD.AbilityPrice'}}">
<label class="label-stripe">{{localize "BITD.AbilityClass"}}</label>
<input id="ability-class" type="text" name="data.class" value="{{data.class}}" placeholder="{{localize 'BITD.AbilityClass'}}">
</div>
</form>