increases security of Wordpress blogs by adding 2nd level of Authentication. After entering correct login credentials, the user has to validate himself using one of 3 ways: SMS Verification, Backup Codes or Email Verification to gain access to his/her blog.
Version: 1.0
Author: Rajesh Chaukwale
Author URI: http://www.techozens.com
License: GPLv2 or later
*/
require_once plugin_dir_path(__FILE__) . 'insert.php';
require_once plugin_dir_path(__FILE__) . 'init.php';
add_action( 'admin_menu' , 'send12' );
function send12() {
add_submenu_page( 'options-general.php','2StepAuth','2StepAuth','manage_options','2stepauth',stepauth_gui );
}
function stepauth_gui() {
?>