client/user: Updating the title on the delete token button.
This commit is contained in:
parent
e0d1d9a12e
commit
8d8477ee6b
1 changed files with 2 additions and 1 deletions
|
@ -27,7 +27,8 @@
|
||||||
<form class='token' data-token-id='<%= index %>'>
|
<form class='token' data-token-id='<%= index %>'>
|
||||||
<input type='hidden' name='token' value='<%= token.token %>'/>
|
<input type='hidden' name='token' value='<%= token.token %>'/>
|
||||||
<% if (token.isCurrentAuthToken) { %>
|
<% if (token.isCurrentAuthToken) { %>
|
||||||
<input type='submit' value='Delete and logout'/>
|
<input type='submit' value='Delete and logout'
|
||||||
|
title='This token is used to authenticate this client, deleting it will force a logout.'/>
|
||||||
<% } else { %>
|
<% } else { %>
|
||||||
<input type='submit' value='Delete'/>
|
<input type='submit' value='Delete'/>
|
||||||
<% } %>
|
<% } %>
|
||||||
|
|
Reference in a new issue