Пример #1
0
<a href="mailto:portal-help@geni.net?subject=Self-asserted email address for EPPN
<?php 
print " {$eppn}";
?>
&body=I would like to register for a GENI account. This email was sent from my institutional email address.">
sending an email
</a>
to portal-help@geni.net from your institutional email address. Make sure the
email you send includes your
<a href="http://www.incommon.org/federation/attributesummary.html#eduPersonPrincipal">EPPN</a>, which is:
<br/><br/>

<b>
<?php 
print $eppn;
?>
</b>
<br/>
<br/>
Your email will be reviewed and you will receive a response from a GENI
administrator about how to proceed.
<br/>
<br/>
<a href="
<?php 
// Link to InCommon federated error handling service.
print incommon_feh_url();
?>
">Technical Information</a>
<?php 
include "kmfooter.php";
Пример #2
0
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE WORK OR THE USE OR OTHER DEALINGS
// IN THE WORK.
//----------------------------------------------------------------------
require_once 'sr_constants.php';
require_once 'sr_client.php';
require_once 'ma_client.php';
require_once 'portal.php';
require_once 'util.php';
require_once 'km_utils.php';
require_once 'maintenance_mode.php';
// If no eppn, go directly to InCommon error page
if (!key_exists('eppn', $_SERVER)) {
    $feh_url = incommon_feh_url();
    header("Location: {$feh_url}");
    exit;
}
if ($in_lockdown_mode) {
    $new_portal = "https://portal.geni.net";
    print "This GENI Clearinghouse is currently transitioning offline.";
    print "</br>";
    print "Creation of new accounts on this Clearinghouse is not allowed.";
    print "</br>";
    print "Please go to the GENI Portal pointing to the new Clearinghouse at " . $new_portal;
    print "</br>";
    print "</br>";
    print "<button onClick=\"window.location='{$new_portal}'\"><b>New Portal</b></button>";
    return;
}