Skip to content

Commit

Permalink
Adjust checkbox label for mailing list subscription
Browse files Browse the repository at this point in the history
  • Loading branch information
dannon committed Sep 6, 2023
1 parent 9e30c70 commit 10b40ed
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions client/src/components/Login/RegisterForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,19 +65,18 @@
dashes ('.', '_', '-').
</b-form-text>
</b-form-group>
<b-form-group
v-if="mailingJoinAddr && serverMailConfigured"
:label="labelSubscribe"
label-for="register-form-subscribe">
<b-form-group v-if="(mailingJoinAddr && serverMailConfigured)">
<b-form-checkbox
id="register-form-subscribe"
v-model="subscribe"
name="subscribe"
type="checkbox" />
type="checkbox">
{{ labelSubscribe }}
</b-form-checkbox>
</b-form-group>
<b-button v-localize name="create" type="submit" :disabled="disableCreate"
>Create</b-button
>
<b-button v-localize name="create" type="submit" :disabled="disableCreate">
Create
</b-button>
</b-card-body>
</b-collapse>
<b-card-footer v-if="showLoginLink">
Expand Down

0 comments on commit 10b40ed

Please sign in to comment.