#23, #29: Fix. Removed sensitive information from log file.

This commit is contained in:
simon 2017-09-09 13:53:22 +01:00
parent 44703d5889
commit 85467c19ce
6 changed files with 91 additions and 57 deletions

View file

@ -236,6 +236,14 @@ th {
color: white;
}
.pseudo-input {
border: inset thin;
background-color: white;
display: inline-block;
min-width: 7.5em;
padding: 0 2em 0 0;
}
.vega-bindings, .vega-actions {
font-size: 66%;
}

View file

@ -6,7 +6,12 @@
{% csrf-field %}
<p class="widget">
<label for="target">{% i18n username-prompt %}</label>
<input type="text" name="target" id="target" value="{{target}}" required {% ifunequal target "" %}disabled{% endifunequal %}/>
{% ifequal target "" %}
<input type="text" name="target" id="target" value="{{target}}" required/>
{% else %}
<span class="pseudo-input">{{target}}</span>
<input type="hidden" name="target" id="target" value="{{target}}" required/>
{% endifequal %}
</p>
<p class="widget">
<label for="pass1">{% i18n new-pass-prompt %}</label>