You are here

function hybridauth_openid_form in HybridAuth Social Login 6.2

Same name and namespace in other branches
  1. 7.2 hybridauth.pages.inc \hybridauth_openid_form()
1 string reference to 'hybridauth_openid_form'
hybridauth_window_start in ./hybridauth.pages.inc

File

./hybridauth.pages.inc, line 435

Code

function hybridauth_openid_form(&$form_state) {
  $form = array();
  $form['openid_identifier'] = array(
    '#type' => 'textfield',
    '#title' => t('OpenID Identity'),
    '#description' => t('Type your OpenID identity you want to use.'),
    '#required' => TRUE,
  );
  $form['submit'] = array(
    '#type' => 'submit',
    '#value' => t('Submit'),
  );
  return $form;
}