コード例 #1
0
<?php

include_once "common/base.php";
$pageTitle = "Register";
include_once "common/header.php";
if (!empty($_POST['username'])) {
    //used a different if/else syntax w/ ':'
    include_once "inc/class.users.inc.php";
    $users = new ColoredListsUsers($db);
    echo $users->createAccount();
} else {
    ?>

    <h2>Sign up</h2>
    <form method="post" action="signup.php" id="registerform">
        <div>
            <label for="username">Email:</label>
            <input type="text" name="username" id="username" /><br />
            <input type="submit" name="register" id="register" value="Sign up" />
        </div>
    </form>


<?php 
}
//end if
include_once 'common/close.php';