public function create_option_page()
 {
     $optionPage = array('parent_slug' => 'options-general.php', 'page_title' => __('Login Form', 'text_domain'), 'menu_title' => __('Login Form', 'text_domain'), 'capability' => 'manage_options', 'menu_slug' => 'wp_login_form', 'option_name' => 'wp_login_form_options', 'fields' => array(array('id' => 'loginPageLogo', 'type' => 'file', 'name' => __('Login Page Logo', 'text_domain'), 'btn_browse' => __('Browse File', 'text_domain'), 'btn_insert' => __('Insert Into Page', 'text_domain')), array('id' => 'logHeight', 'type' => 'text', 'name' => __('Logo Height', 'text_domain'), 'std' => __('80px', 'text_domain')), array('id' => 'logoWidth', 'type' => 'text', 'name' => __('Logo Width', 'text_domain'), 'std' => __('80px', 'text_domain')), array('id' => 'bgImage', 'type' => 'file', 'name' => __('Background Image', 'text_domain'), 'btn_browse' => __('Browse File', 'text_domain'), 'btn_insert' => __('Insert Into Page', 'text_domain')), array('id' => 'bgColor', 'type' => 'color', 'name' => __('Background Color', 'text_domain'), 'std' => '#f1f1f1'), array('id' => 'loginMessage', 'type' => 'textarea', 'name' => __('Login Message', 'text_domain'), 'desc' => __('The message will be displayed on the WordPress Log In page above the Log In form.', 'text_domain')), array('id' => 'linkColor', 'type' => 'color', 'name' => __('Link Color', 'text_domain'), 'std' => '#f1f1f1', 'desc' => __('Choose color for "Back to Plugins" and "Lost your password?" link.', 'text_domain')), array('id' => 'backToPlugins', 'type' => 'checkbox', 'name' => __('Show Back to Plugins link', 'text_domain'), 'std' => 1, 'desc' => __('Check to show "← Back to Plugins" link on login page. Uncheck to hide from login page.', 'text_domain')), array('id' => 'lostPassword', 'type' => 'checkbox', 'name' => __('Show Lost password link', 'text_domain'), 'std' => 1, 'desc' => __('Check to show "Lost your password?" link on login page. Uncheck to hide from login page.', 'text_domain'))));
     $option_page = new \Generators\OptionPage();
     $option_page->create($optionPage);
     $this->get_options = $option_page->get_options();
 }