1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-25 07:37:46 +02:00
keeweb/app/templates/tag.hbs
2016-08-13 22:13:16 +03:00

16 lines
646 B
Handlebars

<div class="tag">
<div class="back-button">
{{res 'retToApp'}} <i class="fa fa-external-link-square"></i>
</div>
<h1>{{res 'tagTitle'}}</h1>
<div class="tag__field">
<label for="tag__field-title">{{Res 'name'}}:</label>
<input type="text" class="input-base" id="tag__field-title" value="{{title}}" size="50" maxlength="128" required />
<button class="tag__btn-rename">{{res 'tagRename'}}</button>
</div>
<div class="tag__space"></div>
<div class="tag__buttons">
<i class="tag__buttons-trash fa fa-trash-o" title="{{res 'tagTrash'}}" tip-placement="right"></i>
</div>
</div>