Fix the misplaced eye icon in Credentials modal form

Do it by simply changing the DOM structure, so the fix of bug#1386126
applies here as well.

Change-Id: I54edc60f711b00bbb6befc53336d549c19e03110
Closes-Bug: #1444422
This commit is contained in:
Timur Sufiev 2015-04-15 14:32:08 +03:00
parent 1bce788cc9
commit 636d7e619b

View File

@ -47,7 +47,9 @@
{% if ec2_creds.ec2_secret_key %}
<div class="form-group">
<label class="control-label">{% trans "EC2 Secret Key" %}</label>
<input type="password" class="form-control" readonly value="{{ ec2_creds.ec2_secret_key }}">
<div>
<input type="password" class="form-control" readonly value="{{ ec2_creds.ec2_secret_key }}">
</div>
</div>
{% endif %}
</fieldset>