You are here

function acquia_agent_existing_account_msg in Acquia Connector 6

Same name and namespace in other branches
  1. 7 acquia_agent/acquia_agent.pages.inc \acquia_agent_existing_account_msg()
1 call to acquia_agent_existing_account_msg()
_acquia_agent_an_trial_pass_old_form in acquia_agent/acquia_agent.pages.inc
Existing user password page

File

acquia_agent/acquia_agent.pages.inc, line 668
Acquia Agent configuration page.

Code

function acquia_agent_existing_account_msg() {
  $output = '<div class="messages warning" style="margin-top: 0px">';
  $output .= t('An existing Acquia.com account is associated with that email address. Enter your password to associate this free trial with that account, or <a href="@an_trial">try another email address</a>', array(
    '@an_trial' => url('admin/settings/acquia-agent'),
  ));
  $output .= '</div>';
  return $output;
}