25 lines
650 B
C#
25 lines
650 B
C#
|
<?cs include:"templates/header.cs" ?>
|
||
|
|
||
|
<?cs include:"templates/macros.cs" ?>
|
||
|
|
||
|
<?cs var:Data.Message ?>
|
||
|
|
||
|
<form method="post">
|
||
|
<p>Player One (Black):
|
||
|
<?cs call:select_list(Data.Userlist,'player1',Data.Username) ?>
|
||
|
</p>
|
||
|
<p>Player Two (White):
|
||
|
<?cs call:select_list(Data.Userlist,'player2','') ?>
|
||
|
</p>
|
||
|
<p>Goban Size:
|
||
|
<select name="gobansize">
|
||
|
<option> 9 </option>
|
||
|
<option> 13 </option>
|
||
|
<option> 19 </option>
|
||
|
</select>
|
||
|
fields </p>
|
||
|
<p>Optional name for game: <input type="text" name="description" size="20" class="text"></p>
|
||
|
<input type="submit" class="submit" value="create game">
|
||
|
</form>
|
||
|
|
||
|
<?cs include:"templates/footer.cs" ?>
|