36 lines
992 B
PHP
36 lines
992 B
PHP
<HTML>
|
|
<HEAD>
|
|
<TITLE>Frontier II - Character Creation</TITLE>
|
|
</HEAD>
|
|
<BODY BGCOLOR="#000000" TEXT="#f0f0f0">
|
|
|
|
<H2 ALIGN="CENTER">Frontier II</H2>
|
|
<H3 ALIGN="CENTER">Character Creation</H3>
|
|
|
|
<P><B>NOTE:</B> While the game is in early development, all characters
|
|
and events are OOC. When the starmap is done, basic system management,
|
|
and basic combat are done, all existing characters will be deleted and
|
|
the game will open for playing IC.
|
|
|
|
<P>Certain character features (race, skills, starting empire) are not
|
|
fully implemented yet, so they will be set with default values for now.
|
|
Once the game goes IC, these features will be selectable during the
|
|
character creation process.
|
|
|
|
<?php
|
|
|
|
session_start();
|
|
require($_SERVER['DOCUMENT_ROOT'].'/include.php');
|
|
|
|
echo "<FORM ACTION=\"chargen2.php\" METHOD=\"POST\">
|
|
<P>Character Name: <INPUT TYPE=\"TEXTBOX\" NAME=\"name\"><BR>
|
|
<P><INPUT TYPE=\"SUBMIT\" VALUE=\"Create Character\"></FORM>";
|
|
|
|
echo $footer;
|
|
|
|
mysqli_close($mysqli);
|
|
|
|
?>
|
|
|
|
</BODY></HTML>
|