Sid Gifari File Manager
🏠 Root
/
home
/
nradmin
/
public_html
/
wp-content
/
plugins
/
forminator
/
library
/
modules
/
custom-forms
/
form-templates
/
📝 Editing: template-registration.php
<?php /** * The Forminator_Template_Registration class. * * @package Forminator */ if ( ! defined( 'ABSPATH' ) ) { die(); } /** * Class Forminator_Template_Contact_Form * * @since 1.0 */ class Forminator_Template_Registration extends Forminator_Template { /** * Template defaults * * @since 1.0 * @return array */ public function defaults() { return array( 'id' => 'registration', 'name' => esc_html__( 'Registration', 'forminator' ), 'description' => esc_html__( 'A general-purpose registration form suitable for events, services, or websites, including personal and contact details.', 'forminator' ), 'icon' => 'profile-male', 'priority' => 5, 'category' => 'custom-form', 'pro' => false, ); } /** * Template fields * * @since 1.0 * @return array */ public function fields() { return array( array( 'wrapper_id' => 'wrapper-1511347711918-1669', 'fields' => array( array( 'element_id' => 'text-1', 'type' => 'text', 'cols' => '12', 'required' => 'true', 'field_label' => esc_html__( 'Username', 'forminator' ), 'placeholder' => 'Enter username', ), ), ), array( 'wrapper_id' => 'wrapper-1511789211918-1741', 'fields' => array( array( 'element_id' => 'email-1', 'type' => 'email', 'cols' => '12', 'required' => 'true', 'required_message' => esc_html__( 'This field is required. Please enter email.', 'forminator' ), 'field_label' => esc_html__( 'Email', 'forminator' ), 'placeholder' => esc_html__( 'E.g. john@doe.com', 'forminator' ), 'validation' => 'true', 'validation_message' => esc_html__( 'This is not a valid email.', 'forminator' ), ), ), ), array( 'wrapper_id' => 'wrapper-1511347712118-1739', 'fields' => array( array( 'element_id' => 'password-1', 'type' => 'password', 'cols' => '12', 'required' => 'true', 'required_message' => __( 'Your password is required.', 'forminator' ), 'field_label' => __( 'Password', 'forminator' ), 'placeholder' => __( 'Enter your password', 'forminator' ), 'description' => '', 'confirm-password-label' => __( 'Confirm Password', 'forminator' ), 'confirm-password-placeholder' => __( 'Confirm new password', 'forminator' ), 'strength' => 'none', 'strength_validation_message' => __( 'Your password doesn\'t meet the minimum strength requirement. We recommend using 8 or more characters with a mix of letters, numbers & symbols.', 'forminator' ), 'validation' => 'true', 'validation_message' => __( 'Your passwords don\'t match.', 'forminator' ), 'required_confirm_message' => __( 'You must confirm your chosen password.', 'forminator' ), ), ), ), ); } /** * Template settings * * @since 1.0 * @return array */ public function settings() { return array( 'form-type' => 'registration', 'submission-behaviour' => 'behaviour-thankyou', /* translators: 1. Open <a>, 2. Close </a>. */ 'thankyou-message' => sprintf( esc_html__( 'Account registration successful. Click %1$shere%2$s to login to your account.', 'forminator' ), '<a href="{login_url}">', '</a>' ), 'email-thankyou-message' => esc_html__( 'Account registration successful. Please check your email inbox to activate your new account.', 'forminator' ), 'manual-thankyou-message' => esc_html__( 'Account registration successful. A website admin must approve your account before you can log in. You’ll receive an email when your account is activated.', 'forminator' ), 'submitData' => array( 'custom-submit-text' => esc_html__( 'Register', 'forminator' ), 'custom-invalid-form-message' => esc_html__( 'Error: Your form is not valid, please fix the errors!', 'forminator' ), ), 'enable-ajax' => 'true', 'validation-inline' => true, 'fields-style' => 'open', 'basic-fields-style' => 'open', 'form-expire' => 'no_expire', 'use-admin-email' => 'true', // Main container. 'form-padding-top' => '0', 'form-padding-right' => '0', 'form-padding-bottom' => '0', 'form-padding-left' => '0', 'form-border-width' => '0', 'form-border-style' => 'none', 'form-border-radius' => '0', // Typography - Label. 'cform-label-font-family' => 'Roboto', 'cform-label-custom-family' => '', 'cform-label-font-size' => '12', 'cform-label-font-weight' => 'bold', // Typography - Section Title. 'cform-title-font-family' => 'Roboto', 'cform-title-custom-family' => '', 'cform-title-font-size' => '45', 'cform-title-font-weight' => 'normal', 'cform-title-text-align' => 'left', // Typography - Section Subtitle. 'cform-subtitle-font-family' => 'Roboto', 'cform-subtitle-custom-font' => '', 'cform-subtitle-font-size' => '18', 'cform-subtitle-font-weight' => 'normal', 'cform-subtitle-text-align' => 'left', // Typography - Input & Textarea. 'cform-input-font-family' => 'Roboto', 'cform-input-custom-font' => '', 'cform-input-font-size' => '16', 'cform-input-font-weight' => 'normal', // Typography - Radio & Checkbox. 'cform-radio-font-family' => 'Roboto', 'cform-radio-custom-font' => '', 'cform-radio-font-size' => '14', 'cform-radio-font-weight' => 'normal', // Typography - Select. 'cform-select-font-family' => 'Roboto', 'cform-select-custom-family' => '', 'cform-select-font-size' => '16', 'cform-select-font-weight' => 'normal', // Typography - Multi Select. 'cform-multiselect-font-family' => 'Roboto', 'cform-multiselect-custom-font' => '', 'cform-multiselect-font-size' => '16', 'cform-multiselect-font-weight' => 'normal', // Typography - Multi Select tag. 'cform-multiselect-tag-font-family' => 'Roboto', 'cform-multiselect-tag-custom-font' => '', 'cform-multiselect-tag-font-size' => '12', 'cform-multiselect-tag-font-weight' => 'medium', // Typography - Dropdown. 'cform-dropdown-font-family' => 'Roboto', 'cform-dropdown-custom-font' => '', 'cform-dropdown-font-size' => '16', 'cform-dropdown-font-weight' => 'normal', // Typography - Calendar. 'cform-calendar-font-family' => 'Roboto', 'cform-calendar-custom-font' => '', 'cform-calendar-font-size' => '13', 'cform-calendar-font-weight' => 'normal', // Typography - Buttons. 'cform-button-font-family' => 'Roboto', 'cform-button-custom-font' => '', 'cform-button-font-size' => '14', 'cform-button-font-weight' => '500', // Typography - Timeline. 'cform-timeline-font-family' => 'Roboto', 'cform-timeline-custom-font' => '', 'cform-timeline-font-size' => '12', 'cform-timeline-font-weight' => 'normal', // Typography - Pagination. 'cform-pagination-font-family' => '', 'cform-pagination-custom-font' => '', 'cform-pagination-font-size' => '16', 'cform-pagination-font-weight' => 'normal', 'payment_require_ssl' => 'true,', 'submission-file' => 'delete', 'options' => array(), // Site Registration. 'site-registration' => 'enable', 'site-registration-name-field' => 'text-1', 'site-registration-title-field' => 'text-1', 'site-registration-role-field' => 'administrator', // Activation Method. 'activation-method' => 'default', 'activation-email' => 'default', // Default Meta Keys. 'registration-username-field' => 'text-1', 'registration-email-field' => 'email-1', 'registration-password-field' => 'password-1', 'registration-user-role' => 'fixed', 'registration-role-field' => 'subscriber', // Additional settings. 'automatic-login' => false, 'hide-registration-form' => '1', 'hidden-registration-form-message' => '<p>' . esc_html__( 'You are already logged in.', 'forminator' ) . '</p>', 'autoclose' => false, // Layout - Radio/Checkbox. 'field-image-size' => 'custom', 'cform-color-option' => 'theme', ); } }
💾 Save
❌ Cancel
Sid Gifari File Manager v1.0 | Terminal Auto-Sync Enabled | Current Path: /home/nradmin/public_html/wp-content/plugins/forminator/library/modules/custom-forms/form-templates