Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(ui): update consent text on /digitize page #467

Merged
merged 2 commits into from
Jul 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions sketch_map_tool/templates/digitize.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,11 @@
</div>
<div>
<p>
<input type="checkbox" id="consent" name="consent" value="True" checked>
{{ _('By uploading the file(s), you agree that the content of the files and the time of upload will
be saved and used for the further development of the service.') }}
{{ _(' Files are stored for processing until the results are generated.') }}
</p>
<p>
<input type="checkbox" id="consent" name="consent" value="True">
{{ _('Enable us to keep the uploaded files beyond processing to further improve this service.') }}
</p>
</div>
<button id="submitBtn" type="submit" class="">{{ _('Upload') }}</button>
Expand Down
Loading