29 lines
912 B
HTML
29 lines
912 B
HTML
<!-- data just needs charId -->
|
|
<template name="addTHPDialog">
|
|
<div class="fit layout vertical">
|
|
<app-header-layout has-scrolling-region class="new-character-dialog flex">
|
|
<app-header fixed effects="waterfall">
|
|
<app-toolbar>
|
|
<div main-title>Add Hitpoint Slider</div>
|
|
</app-toolbar>
|
|
</app-header>
|
|
<div class="form">
|
|
<paper-input id="quantityInput" label="Hitpoint maximum" autofocus type="number" value="" min="0" allowed-pattern="[0-9]">
|
|
</paper-input>
|
|
<paper-input id="nameInput" label="Label"></paper-input>
|
|
<paper-checkbox id="deleteWhenZeroCheckbox">
|
|
Delete when zero
|
|
</paper-checkbox>
|
|
</div>
|
|
</app-header-layout>
|
|
<div class="buttons layout horizontal end-justified">
|
|
<paper-button class="cancelButton">
|
|
Cancel
|
|
</paper-button>
|
|
<paper-button class="addButton" disabled={{invalid}}>
|
|
Add
|
|
</paper-button>
|
|
</div>
|
|
</div>
|
|
</template>
|