Log in with username/password: lyceum/lyceum

Changeset 105

Show
Ignore:
Timestamp:
10/26/05 16:33:37 (3 years ago)
Author:
john
Message:

slightly prettier portal page

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • tags/0.6RC/src/lyceum/portal.php

    r104 r105  
    66get_currentuserinfo(); 
    77 
    8 echo "welcome to Lyceum $user_identity !<br/><br/>"; 
     8echo "<h1>Welcome to Lyceum $user_identity!</h1>";?> 
     9<p>Thank you for helping to test Lyceum. Click <em>Register</em> to sign up for a username and blog. This will generate a password which will be emailed to you. After logging in, you can create posts, adjust blog settings, comment on your blog and other blogs. You can even create mulitple users/blogs and cross post between them.</p> 
     10<?php 
     11echo '<a href="wp-register.php">Register</a><br/>'; 
     12echo '<a href="wp-login.php">Log In</a><br/>'; 
     13echo '<a href="wp-login.php?action=logout">Log Out</a>'; 
     14 
    915 
    1016$myblogs = get_userblogs(); 
    1117 
    12 echo "<hr/>MY BLOGS<br/>"; 
     18echo "<hr/><h2>My Blogs</h2>"; 
    1319if ($myblogs) 
    1420   foreach ($myblogs as $b) 
     
    1622else 
    1723   echo "You do not have permissions on any blogs"; 
    18  
    19  
    20 echo '<hr/><a href="wp-register.php">click here to register for a username. this will automatically create a blog for you</a><br/><br/>'; 
    21 echo '<a href="wp-login.php">click here to log in</a><br/><br/>'; 
    22 echo '<a href="wp-login.php?action=logout">click here to log out</a><br/><br/>'; 
    2324 
    2425$blogs = $wpdb->get_results(" 
     
    3031"); 
    3132 
    32 echo "<hr/>ALL BLOGS<br/>"; 
     33echo "<hr/><h2>All Blogs</h2>"; 
    3334if ($blogs) 
    3435   foreach ($blogs as $b) 
Log in with username/password: lyceum/lyceum