diff options
| author | rr- | 2016-05-18 00:15:28 +0200 |
|---|---|---|
| committer | rr- | 2016-05-18 00:15:28 +0200 |
| commit | 50404d5f5ec8bf676cfbe1a3268e3bcd2a36e5f6 (patch) | |
| tree | d93fc4a7dbb59b4a003e4cd3a58943a998453d99 /client/html/user_delete.tpl | |
| parent | 407848706af00e2b9fa65d5acef552a7bf5e82fb (diff) | |
client/general: change templates extension
...from .Handlebars' (which the project no longer uses) .hbs, to a more
generic .tpl. Additionally, replace hyphens with underscores for
consistency.
Diffstat (limited to 'client/html/user_delete.tpl')
| -rw-r--r-- | client/html/user_delete.tpl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/client/html/user_delete.tpl b/client/html/user_delete.tpl new file mode 100644 index 0000000..6af74a2 --- /dev/null +++ b/client/html/user_delete.tpl @@ -0,0 +1,15 @@ +<div id='user-delete'> + <form> + <div class='input'> + <ul> + <li> + <%= makeCheckbox({id: 'confirm-deletion', name: 'confirm-deletion', required: true, text: 'I confirm that I want to delete this account.'}) %> + </li> + </ul> + </div> + <div class='messages'></div> + <div class='buttons'> + <input type='submit' value='Delete account'/> + </div> + </form> +</div> |