<% include_once( "../modules/utils.inc.php" );
$u = $sessionUserId = $_COOKIE["c_uid"];
$tok = $authenticated = $_COOKIE["c_pass_token"];
if( $tok && $tok == md5( getPasswdForUser( $u ))) {
include_once( "$modules/header.inc.php" );
%>
<br />
<center>
<img src="/img/import-header.gif" alt="" />
<br />
<img style="margin-top: 35px;" name="step" src="/img/import-step-3.gif" alt="" />
<br />
<br />
<br />
</center>
<%
shout( "Importing Complete!",
"Your links were quite tasty! We imported your links and created tags for each of your folders."
. ($num_issues ? "There were $num_issues issues)." : "")
);
%>
<br />
<center>
<h1>
<a href='/f/<%= $imported_folder_ID %>'>Go explore your new links</a>,
</h1>
or
<h2>
<a href='/help/how-to-public?imported_folder_ID=<%= $imported_folder_ID %>'>Find out how to make them public</a>.
</h2>
</center>
<%
include_once( "$modules/footer.inc.php" );
} else {
warn( "Please log in first..." );
echo bounceTo( $site . "/login?bounceToPage=import/" );
}
%>