Skip to content
This repository has been archived by the owner on Dec 26, 2022. It is now read-only.

Commit

Permalink
feat: make it more easy to select the 3rd dose (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
dunglas authored Nov 27, 2021
1 parent 94f09d6 commit 46e38ce
Showing 1 changed file with 31 additions and 23 deletions.
54 changes: 31 additions & 23 deletions browser_action/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,37 @@
</button>
</div>

<div class="panel-section-separator"></div>

<div class="panel-formElements-item">
<div>
<input
type="radio"
name="injectionType"
id="fullServiceInjection"
checked
/>
<label for="fullServiceInjection">1ère dose (avec rappel)</label>
</div>

<div>
<input type="radio" name="injectionType" id="firstInjectionOnly" />
<label for="firstInjectionOnly">1ère dose (sans rappel)</label>
</div>

<div>
<input type="radio" name="injectionType" id="secondInjectionOnly" />
<label for="secondInjectionOnly">2ème dose</label>
</div>

<div>
<input type="radio" name="injectionType" id="thirdInjectionOnly" />
<label for="thirdInjectionOnly">3ème dose</label>
</div>
</div>

<div class="panel-section-separator"></div>

<div class="panel-formElements-item">
<div>
<input type="radio" name="autoBook" id="disableAutoBook" checked />
Expand Down Expand Up @@ -95,29 +126,6 @@
<details class="panel-section panel-section-formElements">
<summary>Options avancées</summary>

<div class="panel-formElements-item">
<div>
<input
type="radio"
name="injectionType"
id="fullServiceInjection"
checked
/>
<label for="fullServiceInjection">1ère dose (avec rappel)</label>
</div>
<div>
<input type="radio" name="injectionType" id="firstInjectionOnly" />
<label for="firstInjectionOnly">1ère dose (sans rappel)</label>
</div>
<div>
<input type="radio" name="injectionType" id="secondInjectionOnly" />
<label for="secondInjectionOnly">2ème dose</label>
</div>
<div>
<input type="radio" name="injectionType" id="thirdInjectionOnly" />
<label for="thirdInjectionOnly">3ème dose</label>
</div>
</div>
<div class="panel-formElements-item">
<button id="reset" class="expander">
Remise à zéro (effacera toutes les données)
Expand Down

0 comments on commit 46e38ce

Please sign in to comment.