foundryvtt-beam-saber/templates/items/ability.html

20 lines
968 B
HTML
Raw Normal View History

2020-04-23 16:11:04 +00:00
<form class="{{cssClass}}" autocomplete="off">
<header class="sheet-header">
<img src="{{item.img}}" data-edit="img" title="{{item.name}}"/>
2020-04-23 16:11:04 +00:00
<div class="header-fields">
<h1 class="charname"><input name="name" type="text" value="{{item.name}}" placeholder="{{localize 'BITD.Name'}}"/></h1>
2020-04-23 16:11:04 +00:00
</div>
</header>
{{!-- Sheet Body --}}
<section class="sheet-body">
<textarea name="data.description">{{data.description}}</textarea>
</section>
2020-05-04 17:28:02 +00:00
<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'}}">
2020-05-04 17:28:02 +00:00
</div>
2020-04-23 16:11:04 +00:00
</form>