My client has a 2 part membership registration where she’d like to have a generic password automatically applied to a registration form (first part) so the member can see allowed content and access their personal ‘settings’ page (and edit items such as phone, address and password - updating them or adding as required).
I’m using:
<div style="display:none;">
<input type="password" id="Password" name="Password" value="MEMBER01" class="text-field w-input" required>
<input type="password" id="ConfirmPassword" name="ConfirmPassword" value="MEMBER01" class="text-field w-input" required>
</div>
in an attempt at recording this generic password on submission - but no luck.
Anyone have a solution they could share or advice as to how to make this work?