16 lines
533 B
C#
16 lines
533 B
C#
|
<?cs include:"templates/header.cs" ?>
|
||
|
|
||
|
<?cs var:Data.Message ?>
|
||
|
<?cs if:#Data.NotCreated ?>
|
||
|
<form method="post">
|
||
|
<p>Your username:<br>
|
||
|
<input name="username" type="text" class="text" size="20"></p>
|
||
|
<p>Your Password:<br>
|
||
|
<input name="password1" type="text" class="text" size="20"></p>
|
||
|
<p>Please retype your Password:<br>
|
||
|
<input name="password2" type="text" class="text" size="20"></p>
|
||
|
<p><input type="submit" class="submit" value="create account"></p>
|
||
|
</form>
|
||
|
<?cs /if ?>
|
||
|
|
||
|
<?cs include:"templates/footer.cs" ?>
|