-
Notifications
You must be signed in to change notification settings - Fork 247
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
Enregistrer et restaurer automatiquement les données du formulaire (avec chiffrement) #58
Open
tar-gezed
wants to merge
5
commits into
LAB-MI:main
Choose a base branch
from
tar-gezed:feature/store-and-autocomplete-data
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
91c4e72
Enregistrer et restaurer automatiquement les données du formulaire
de08bf9
Rebase + rebase fixes + fix save data checkbox click input
6850c40
Clean all data on clearForm method (even the save data field)
85f6ff6
Fix html tags + make getReasonsObject inline
theblackhole eba728a
Fix punctuation for wipe data link
theblackhole File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -46,8 +46,8 @@ <h1 class="flex flex-wrap"> | |||||
</span> | ||||||
</h1> | ||||||
<p class="text-desc"> | ||||||
En application du décret n°2020-1310 du 29 octobre 2020 prescrivant les mesures générales | ||||||
nécessaires pour faire face à l'épidémie de Covid19 dans le cadre de l'état d'urgence sanitaire | ||||||
En application du décret n°2020-1310 du 29 octobre 2020 prescrivant les mesures générales | ||||||
nécessaires pour faire face à l'épidémie de Covid19 dans le cadre de l'état d'urgence sanitaire | ||||||
</p> | ||||||
|
||||||
</div> | ||||||
|
@@ -59,16 +59,43 @@ <h1 class="flex flex-wrap"> | |||||
id="alert-facebook" | ||||||
></p> | ||||||
|
||||||
<div class="wrapper"> | ||||||
<form id="form-profile" accept-charset="UTF-8"></form> | ||||||
<p class="text-center mt-5"> | ||||||
<button type="button" id="generate-btn" class="btn btn-primary btn-attestation"><span ><i class="fa fa-file-pdf inline-block mr-1"></i> Générer mon attestation</span></button> | ||||||
</p> | ||||||
<div class="wrapper"> | ||||||
<form id="form-profile" accept-charset="UTF-8"></form> | ||||||
<p class="text-center mt-5"> | ||||||
<button type="button" id="generate-btn" class="btn btn-primary btn-attestation"> | ||||||
<span> | ||||||
<i class="fa fa-file-pdf inline-block mr-1"></i> | ||||||
Générer mon attestation | ||||||
</span> | ||||||
</button> | ||||||
</p> | ||||||
|
||||||
<div class="bg-primary d-none" id="snackbar"> | ||||||
L'attestation est téléchargée sur votre appareil. | ||||||
</div> | ||||||
|
||||||
<div id="formgroup-storedata" | ||||||
class="form-check text-center"> | ||||||
<input class="form-check-input" | ||||||
type="checkbox" | ||||||
name="storedata" | ||||||
id="field-storedata" | ||||||
value="storedata"> | ||||||
<label class="form-check-label" | ||||||
for="field-storedata"> | ||||||
Stocker mes données sur l'appareil afin de remplir automatiquement mes futures attestations | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
</label> | ||||||
</div> | ||||||
|
||||||
<a id="cleardata" | ||||||
class="center delete-data-link" | ||||||
href="javascript:void(0)">Effacer les données du formulaire</a> | ||||||
<div class="bg-primary d-none" | ||||||
id="snackbar-cleardata"> | ||||||
Les données du formulaire ont été effacées. | ||||||
</div> | ||||||
</div> | ||||||
|
||||||
|
||||||
<div id="footnotes"> | ||||||
<p id="footnote1"> | ||||||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Je pense que cette suggestion de modification de caractère mérite une PR séparée car il n'y a pas de lien avec la fonctionnalité apportée par l'actuelle.