blob: 5031cee080730abc2292db3fd7efd7c975e261fc [file] [log] [blame]
<?php
/*******************************************************************************
* Copyright (c) 2012 Eclipse Foundation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Denis Roy (Eclipse Foundation)- initial API and implementation
*******************************************************************************/
ob_start();
$message = <<<EOHTML
Thank you for confirming your email address. Your Eclipse.org account is now active and you may now <a href=".">log in</a>. Please note that some Eclipse.org
pages may require you to provide your login credentials.
EOHTML;
$message .= $jumpToHTML;
if ($error != "") {
$message = "<font color='#900'>" . $error . "</font>";
}
?>
<div id="maincontent">
<div id="midcolumn" style="width: 678px;">
<h1><?= $pageTitle ?></h1>
<p><?= $message ?>
</div>
</div>
<?php
$html = ob_get_contents();
ob_end_clean();
?>