You are here

function hybridauth_openid_form in HybridAuth Social Login 7.2

Same name and namespace in other branches
  1. 6.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 611
HybridAuth module pages.

Code

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