cleanup form

This commit is contained in:
biglyderv 2024-11-26 21:14:32 -05:00
parent 73dafb8999
commit 34d322e0c0
3 changed files with 39 additions and 47 deletions

View file

@ -1,5 +1,6 @@
<?php
require("../libs/page.php");
require("../libs/form.php");
function post_handler() {
global $db;
@ -46,32 +47,12 @@
page_header();
$form_message = post_handler();
form("Join", $form_message, array(
array('key' => 'Username', 'type' => 'text', 'name' => 'user', 'default' => ''),
array('key' => 'Password', 'type' => 'password', 'name' => 'pass', 'default' => ''),
array('key' => 'Password (again)', 'type' => 'password', 'name' => 'pass2', 'default' => '')
));
// TODO: form builder. this is lazy for testing purposes
?>
<form class='form' enctype="multipart/form-data" method="POST">
<h1 class="form-heading">
Join
</h1>
<span class='form-message'>
<?php echo $form_message ?>
</span>
<span class='form-key'>
Username
</span>
<input class='form-input' type="text" name="user" value="">
<span class='form-key'>
Password
</span>
<input class='form-input' type="password" name="pass" value="">
<span class='form-key'>
Password (again)
</span>
<input class='form-input' type="password" name="pass2" value="">
<input class='form-button' type="Submit" name="Submit">
</form>
<?php
page_footer();
?>