24 lines
1.1 KiB
HTML
24 lines
1.1 KiB
HTML
<!-- shamelessly nicked and renamed from deleteCharacterConfirmation.html -->
|
|
<template name="unshareCharacterConfirmation">
|
|
<div class="fit layout vertical">
|
|
<app-header-layout has-scrolling-region class="feedback flex">
|
|
<app-header fixed effects="waterfall">
|
|
<app-toolbar>
|
|
<div main-title>Unshare Character</div>
|
|
</app-toolbar>
|
|
</app-header>
|
|
<div class="form flex">
|
|
Removing (unsharing) a character does not delete it.<br>
|
|
However, you will be no longer be able to access or view it, unless it is publicly visible.<br>
|
|
The character's owner or anyone with write permissions for the character can return read access.<br><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="unshareButton" style={{getStyle}} disabled={{cantUnshare}}>Unshare Character</paper-button>
|
|
</div>
|
|
</app-header-layout>
|
|
<div class="buttons layout horizontal end-justified">
|
|
<paper-button class="cancelButton"> Cancel </paper-button>
|
|
</div>
|
|
</div>
|
|
</template>
|