Netlify Form - Radio Button field name

Hi.

Site name: assm-pastor.netlify.app

I have few question where input type = radio or checkbox…

When I check the form submitted, it shows the answer as the question.
I would like to show question and answer

For instance, it should be the question at the left… and answer at the right
But those at the left are one of my answer for that question.

image

<div class="mb-4">
    <label class="form-label" for="known_level">您与申请者的熟识程度 How well do you know the applicant?</label>
    <div class="form-check">
        <label class="form-check-label" for="well_known">
            <input class="form-check-input" type="radio" name="known_level" value="很熟 Very Well" id="well_known" required>
            很熟 Very Well
        </label>
    </div>
    <div class="form-check">
        <label class="form-check-label" for="known">
            <input class="form-check-input" type="radio" name="known_level" value="熟 Well" id="known" required>
            熟 Well
        </label>
    </div>
    <div class="form-check">
        <label class="form-check-label" for="casually_known">
            <input class="form-check-input" type="radio" name="known_level" value="不太熟 Casually" id="casually_known" required>
            不太熟 Casually
        </label>
    </div>
    <div class="form-check">
        <label class="form-check-label" for="hardly_known">
            <input class="form-check-input" type="radio" name="known_level" value="不熟 Hardly" id="hardly_known" required>
            不熟 Hardly
        </label>
    </div>
    <div class="invalid-feedback" data-for="known_level"></div>
</div>

Any advice?
Thank you in advance

Hi there, did you read these threads already? There might be something relevant in here:

1 Like

Hi,

Thank you for the reply.
I am sorry to say these are not the solution I am looking for.

I tried Dennis’s suggestion.
But the form will show the name instead of the question (label tag)

What I wanted is to show the question instead of showing the name.

Example:
Question: Are you able to attend?
Answer: Yes / No {name = ‘attendance’}

In the form, it should show:
Are you able to attend Yes/No
Instead of
Attendance Yes/No

Hope it clarifies

Hi @sofhin,

Forms currently show the input names instead of the labels. There’s no way to change this. We can add a feature request for it if you wish. However, we do not know if/when the feature would be available.

This isn’t entirely true. I have a site online that uses the label for my checkbox field instead of the name. Actually this topic needs a bit more documentation imho

Hi.

Please submit this feature request

Thank you

Hi.

Can you share more on it?

Is your checkbox field only one input? Or having multiple input?

Thank you

It’s a single checkbox, indeed. I can run a couple of tests this week, I’ll keep you posted

Alright.

FYI, if single checkbox, I can get the label as well.

Thank you