Upload files to "website"

This commit is contained in:
Justin Pope 2024-09-19 03:00:30 +00:00
parent e3246d93ed
commit 7480285825
5 changed files with 164 additions and 0 deletions

35
website/chargen.php Normal file
View file

@ -0,0 +1,35 @@
<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>