{"id":4078,"date":"2019-04-03T18:48:29","date_gmt":"2019-04-03T13:18:29","guid":{"rendered":"https:\/\/blog.pheonixsolutions.com\/?p=4078"},"modified":"2019-04-04T17:14:56","modified_gmt":"2019-04-04T11:44:56","slug":"create-login-form-using-codeigniter-framework","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/create-login-form-using-codeigniter-framework\/","title":{"rendered":"CREATE LOGIN FORM USING CODEIGNITER  FRAMEWORK"},"content":{"rendered":"\n<h4 class=\"wp-block-heading\">CREATE LOGIN FORM IN CODEIGNITER<\/h4>\n\n\n\n<h4 class=\"wp-block-heading\">Date :03\/04\/2019<\/h4>\n\n\n\n<p>In this article, we will help you in creating a simple login form using codeigniter framework.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh3.googleusercontent.com\/-1GM6d98p9Jk\/VYYF5thMvuI\/AAAAAAAAFs4\/jsucNlqXYxY\/25-free-css-html-login-form-templates.jpg?imgmax=1600\" alt=\"Related image\"\/><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\">Pre-requesties<\/h4>\n\n\n\n<p>we have to create database and table. Firstly, create database and name it  as \u2018form\u2019. similarly, create a table named \u2018register\u2019. <\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Database Config Settings<\/h4>\n\n\n\n<p>In order to connect with the database, the below instructions must be followed.<\/p>\n\n\n\n<p>The file is located at <strong>application\/config\/database.php.<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">$db['default'] = array(\n\t'dsn'\t=> '',\n\t'hostname' => 'localhost',\n\t'username' => 'root',\n\t'password' => '',\n\t'database' => 'form',\n\t'dbdriver' => 'mysqli',\n\t'dbprefix' => '',\n\t'pconnect' => FALSE,\n\t'db_debug' => (ENVIRONMENT !== 'production'),\n\t'cache_on' => FALSE,\n\t'cachedir' => '',\n\t'char_set' => 'utf8',\n\t'dbcollat' => 'utf8_general_ci',\n\t'swap_pre' => '',\n\t'encrypt' => FALSE,\n\t'compress' => FALSE,\n\t'stricton' => FALSE,\n\t'failover' => array(),\n\t'save_queries' => TRUE\n);\n\n<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Controller (application\/controllers\/Welcome.php)<\/h4>\n\n\n\n<p>Controller is a process which get the input request from user, communicates with <strong>Model<\/strong> and then loads appropriate <strong>Views<\/strong> file.<\/p>\n\n\n\n<p>In the below Controller class, we have functions for different tasks.<\/p>\n\n\n\n<p>=>load_login()- This function load the login page.<\/p>\n\n\n\n<p>=>login_validate()-Fetch the data and pass the values to model.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">public function load_login()\n{\n    $this->load->view('login.php');  \n}\n public function login_validate()\n    {\n\n      $this->load->library('form_validation');\n      $this->form_validation->set_rules('firstname', 'first_name', 'required');\n      $this->form_validation->set_rules('password', 'password', 'required');\n      if ($this->form_validation->run())\n      {\n        $username=$this->input->post('firstname');\n        $password=$this->input->post('password');\n        $this->load->model('Insert_model');\n        if($var1=$this->Insert_model->check_login($username,$password))\n        {\n            echo \"logged in successfully\";\n        }\n        else\n        {\n          $this->session->set_flashdata('error','Invalied username and password');\n          redirect('Welcome\/load_login');\n        }\n      }\n      else\n      {\n         echo json_encode($this->form_validation->error_array());\n        $this->load->view('login.php');\n      }\n      \n    }<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Model (application\/models\/Insert_model.php)<\/h4>\n\n\n\n<p><strong>To check the login,<\/strong><br>check_login-> function fetches register item by it\u2019s username and password<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\"> public function check_login($username,$password)\n  {\n    $this->db->where('first_name',$username);\n    $this->db->where('password',$password); \n    $query=$this->db->get('register');\n\n    if($query->num_rows()>0)\n    {\n       \n       return $query->row();\n    }\n    else\n    {\n      return false;\n    }\n  }<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Index View (application\/views\/login.php)<\/h4>\n\n\n\n<p>This view file is called by load_login() function of our Controller class.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;body>\n&lt;center>\n\t\t&lt;h5>Login Form&lt;\/h5>\n\t&lt;form role=\"form\" method=\"post\" action=\"&lt;?php echo site_url('Welcome\/login_validate');?>\">\n\t&lt;table>\n\t\t\t&lt;tr>&lt;td>user name&lt;\/td>&lt;td>&lt;input type=\"text\" name=\"firstname\">&lt;\/td>&lt;br>&lt;\/tr>\n  \t\t\t&lt;tr>&lt;td>Password&lt;\/td>&lt;td>&lt;input type=\"Password\" name=\"password\">&lt;\/td>&lt;br>&lt;\/tr>\n  \t\t\t&lt;tr>&lt;td>&lt;input type = \"submit\" name=\"submit\"\/>&lt;\/td>&lt;\/tr>\n\t\t\t&lt;\/table>\n\t&lt;\/form>\n&lt;\/center><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Conclusion: <\/h4>\n\n\n\n<p> If you enter the correct login details it will display the message like \u201clogged in successfully\u201d. Otherwise it will show as  \u201cInvalid username and password\u201d. That&#8217;s it.<\/p>\n\n\n\n<p>\n\nThanks for using pheonixsolutions.\n\n<\/p>\n\n\n\n<p>You find this tutorial helpful? Share with your friends to keep it alive.<br><\/p>\n","protected":false},"excerpt":{"rendered":"<p>CREATE LOGIN FORM IN CODEIGNITER Date :03\/04\/2019 In this article, we will help you in creating a simple login form using codeigniter framework. Pre-requesties we have to create database and table. Firstly, create database and name it as \u2018form\u2019. similarly, create a table named \u2018register\u2019. Database Config Settings In order&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/create-login-form-using-codeigniter-framework\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">CREATE LOGIN FORM USING CODEIGNITER  FRAMEWORK<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[340,221,1],"tags":[604],"class_list":{"0":"post-4078","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-codeigniter","7":"category-php","8":"category-uncategorized","9":"tag-login-form","10":"h-entry","12":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/blog\/create-login-form-using-codeigniter-framework\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"CREATE LOGIN FORM IN CODEIGNITER Date :03\/04\/2019 In this article, we will help you in creating a simple login form using codeigniter framework. Pre-requesties we have to create database and table. Firstly, create database and name it as \u2018form\u2019. similarly, create a table named \u2018register\u2019. Database Config Settings In order&hellip; Continue Reading CREATE LOGIN FORM USING CODEIGNITER FRAMEWORK\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/create-login-form-using-codeigniter-framework\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2019-04-03T13:18:29+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-04-04T11:44:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/lh3.googleusercontent.com\/-1GM6d98p9Jk\/VYYF5thMvuI\/AAAAAAAAFs4\/jsucNlqXYxY\/25-free-css-html-login-form-templates.jpg?imgmax=1600\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/create-login-form-using-codeigniter-framework\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/create-login-form-using-codeigniter-framework\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"CREATE LOGIN FORM USING CODEIGNITER FRAMEWORK\",\"datePublished\":\"2019-04-03T13:18:29+00:00\",\"dateModified\":\"2019-04-04T11:44:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/create-login-form-using-codeigniter-framework\\\/\"},\"wordCount\":217,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/create-login-form-using-codeigniter-framework\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/lh3.googleusercontent.com\\\/-1GM6d98p9Jk\\\/VYYF5thMvuI\\\/AAAAAAAAFs4\\\/jsucNlqXYxY\\\/25-free-css-html-login-form-templates.jpg?imgmax=1600\",\"keywords\":[\"Login Form\"],\"articleSection\":[\"Codeigniter\",\"PHP\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/create-login-form-using-codeigniter-framework\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/create-login-form-using-codeigniter-framework\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/create-login-form-using-codeigniter-framework\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/create-login-form-using-codeigniter-framework\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/create-login-form-using-codeigniter-framework\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/lh3.googleusercontent.com\\\/-1GM6d98p9Jk\\\/VYYF5thMvuI\\\/AAAAAAAAFs4\\\/jsucNlqXYxY\\\/25-free-css-html-login-form-templates.jpg?imgmax=1600\",\"datePublished\":\"2019-04-03T13:18:29+00:00\",\"dateModified\":\"2019-04-04T11:44:56+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/create-login-form-using-codeigniter-framework\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/create-login-form-using-codeigniter-framework\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/create-login-form-using-codeigniter-framework\\\/#primaryimage\",\"url\":\"https:\\\/\\\/lh3.googleusercontent.com\\\/-1GM6d98p9Jk\\\/VYYF5thMvuI\\\/AAAAAAAAFs4\\\/jsucNlqXYxY\\\/25-free-css-html-login-form-templates.jpg?imgmax=1600\",\"contentUrl\":\"https:\\\/\\\/lh3.googleusercontent.com\\\/-1GM6d98p9Jk\\\/VYYF5thMvuI\\\/AAAAAAAAFs4\\\/jsucNlqXYxY\\\/25-free-css-html-login-form-templates.jpg?imgmax=1600\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/create-login-form-using-codeigniter-framework\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"CREATE LOGIN FORM USING CODEIGNITER FRAMEWORK\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/blog.pheonixsolutions.com\"],\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/pheonixsolutions.com\/blog\/create-login-form-using-codeigniter-framework\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"CREATE LOGIN FORM IN CODEIGNITER Date :03\/04\/2019 In this article, we will help you in creating a simple login form using codeigniter framework. Pre-requesties we have to create database and table. Firstly, create database and name it as \u2018form\u2019. similarly, create a table named \u2018register\u2019. Database Config Settings In order&hellip; Continue Reading CREATE LOGIN FORM USING CODEIGNITER FRAMEWORK","og_url":"https:\/\/pheonixsolutions.com\/blog\/create-login-form-using-codeigniter-framework\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2019-04-03T13:18:29+00:00","article_modified_time":"2019-04-04T11:44:56+00:00","og_image":[{"url":"https:\/\/lh3.googleusercontent.com\/-1GM6d98p9Jk\/VYYF5thMvuI\/AAAAAAAAFs4\/jsucNlqXYxY\/25-free-css-html-login-form-templates.jpg?imgmax=1600","type":"","width":"","height":""}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"admin","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/create-login-form-using-codeigniter-framework\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/create-login-form-using-codeigniter-framework\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"CREATE LOGIN FORM USING CODEIGNITER FRAMEWORK","datePublished":"2019-04-03T13:18:29+00:00","dateModified":"2019-04-04T11:44:56+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/create-login-form-using-codeigniter-framework\/"},"wordCount":217,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/create-login-form-using-codeigniter-framework\/#primaryimage"},"thumbnailUrl":"https:\/\/lh3.googleusercontent.com\/-1GM6d98p9Jk\/VYYF5thMvuI\/AAAAAAAAFs4\/jsucNlqXYxY\/25-free-css-html-login-form-templates.jpg?imgmax=1600","keywords":["Login Form"],"articleSection":["Codeigniter","PHP"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/create-login-form-using-codeigniter-framework\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/create-login-form-using-codeigniter-framework\/","url":"https:\/\/pheonixsolutions.com\/blog\/create-login-form-using-codeigniter-framework\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/create-login-form-using-codeigniter-framework\/#primaryimage"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/create-login-form-using-codeigniter-framework\/#primaryimage"},"thumbnailUrl":"https:\/\/lh3.googleusercontent.com\/-1GM6d98p9Jk\/VYYF5thMvuI\/AAAAAAAAFs4\/jsucNlqXYxY\/25-free-css-html-login-form-templates.jpg?imgmax=1600","datePublished":"2019-04-03T13:18:29+00:00","dateModified":"2019-04-04T11:44:56+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/create-login-form-using-codeigniter-framework\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/create-login-form-using-codeigniter-framework\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/create-login-form-using-codeigniter-framework\/#primaryimage","url":"https:\/\/lh3.googleusercontent.com\/-1GM6d98p9Jk\/VYYF5thMvuI\/AAAAAAAAFs4\/jsucNlqXYxY\/25-free-css-html-login-form-templates.jpg?imgmax=1600","contentUrl":"https:\/\/lh3.googleusercontent.com\/-1GM6d98p9Jk\/VYYF5thMvuI\/AAAAAAAAFs4\/jsucNlqXYxY\/25-free-css-html-login-form-templates.jpg?imgmax=1600"},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/create-login-form-using-codeigniter-framework\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"CREATE LOGIN FORM USING CODEIGNITER FRAMEWORK"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","caption":"admin"},"sameAs":["http:\/\/blog.pheonixsolutions.com"],"url":"https:\/\/pheonixsolutions.com\/blog\/author\/admin\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-13M","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/4078","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=4078"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/4078\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=4078"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=4078"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=4078"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}