21 lines
820 B
HTML
21 lines
820 B
HTML
<template name="deleteCharacterConfirmation">
|
|
<div class="fit layout vertical">
|
|
<app-header-layout has-scrolling-region class="feedback flex">
|
|
<app-header fixed effects="waterfall">
|
|
<app-toolbar>
|
|
<div main-title>Delete Character</div>
|
|
</app-toolbar>
|
|
</app-header>
|
|
<div class="form flex">
|
|
Deleting a character cannot be undone.<br>
|
|
To continue type "{{name}}" into the box below.<br>
|
|
<paper-input id="nameInput" label="type the characters's name here" style="width: 100%;"></paper-input><br>
|
|
<paper-button id="deleteButton" style={{getStyle}} disabled={{cantDelete}}>Delete Character</paper-button>
|
|
</div>
|
|
</app-header-layout>
|
|
<div class="buttons layout horizontal end-justified">
|
|
<paper-button class="cancelButton"> Cancel </paper-button>
|
|
</div>
|
|
</div>
|
|
</template>
|