Merge pull request #40 from dod-ccpo/disable-request-form-autocomplete

Disable autocomplete for JEDI request form
This commit is contained in:
Jason Garber - Ctr 2018-06-20 11:38:09 -04:00 committed by GitHub
commit d166e697e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,9 +15,9 @@
<main class="main-content usa-width-two-thirds">
{% if request_id %}
<form method='POST' action="{{ reverse_url('request_form_update', current, request_id) }}">
<form method='POST' action="{{ reverse_url('request_form_update', current, request_id) }}" autocomplete="off">
{% else %}
<form method='POST' action="{{ reverse_url('request_form_new', current) }}">
<form method='POST' action="{{ reverse_url('request_form_new', current) }}" autocomplete="off">
{% end %}
{% module xsrf_form_html() %}