Tweak the text on the dangerous scope authorization.
This commit is contained in:
parent
5aaa2163cb
commit
00f093cc64
1 changed files with 4 additions and 5 deletions
|
@ -39,7 +39,7 @@
|
|||
|
||||
{% if scope.dangerous %}
|
||||
<i class="fa fa-lg fa-exclamation-triangle"
|
||||
data-title="This scope grants a lot of power. Be careful when authorizing it!"
|
||||
data-title="This scope grants permissions which are potentially dangerous. Be careful when authorizing it!"
|
||||
data-container="body" bs-tooltip></i>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
@ -49,7 +49,7 @@
|
|||
<div id="description-{{ index }}" class="panel-collapse {% if not scope.dangerous %} collapse {% else %} in {% endif %}">
|
||||
<div class="panel-body">
|
||||
{% if scope.dangerous %}
|
||||
<div class="alert alert-warning">Warning! This scope grants a lot of power. Be careful when authorizing it!</div>
|
||||
<div class="alert alert-warning">This scope grants permissions which are potentially dangerous. Be careful when authorizing it!</div>
|
||||
{% endif %}
|
||||
|
||||
{{ scope.description }}
|
||||
|
@ -91,10 +91,9 @@
|
|||
<h4 class="modal-title">Confirm Authorization</h4>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
The application <strong>{{ application.name }}</strong> is requesting access to scopes with wide
|
||||
permissions.
|
||||
The application <strong>{{ application.name }}</strong> is requesting permission to perform actions which are potentially dangerous.
|
||||
<br><br>
|
||||
Really authorize?
|
||||
Are you sure you want to authorize this application?
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<form method="post" action="/oauth/authorizeapp" style="display: inline-block">
|
||||
|
|
Reference in a new issue