activation: fix casing

This commit is contained in:
Girish Ramakrishnan
2025-11-18 15:01:57 +01:00
parent 3693857960
commit 9fa330a0a0
+2 -2
View File
@@ -90,7 +90,7 @@ onMounted(async () => {
<input type="submit" style="display: none;" :disabled="busy || !isValid"/>
<FormGroup :has-error="formError.displayName">
<label for="displayNameInput">Full Name</label>
<label for="displayNameInput">Full name</label>
<TextInput id="displayNameInput" v-model="displayName" required />
<small class="text-danger">{{ formError.displayName }}</small>
</FormGroup>
@@ -114,7 +114,7 @@ onMounted(async () => {
<small class="text-danger">{{ formError.password }}</small>
</FormGroup>
<Checkbox v-model="acceptLicense" label="Accept Cloudron License" helpUrl="https://www.cloudron.io/legal/terms.html" required />
<Checkbox v-model="acceptLicense" label="Accept Cloudron license" helpUrl="https://www.cloudron.io/legal/terms.html" required />
</fieldset>
<div class="actions">