recreate project

This commit is contained in:
root
2026-02-10 22:11:06 -05:00
commit 663c0cdbda
10149 changed files with 1379710 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
<head>
<title>Create User</title>
</head>
<body>
<h1>Create User</h1>
<form method="post" action="/user/store">
<?= csrf_field(); ?>
<label>Password:</label><input type="password" name="password" required><br>
<label>First Name:</label><input type="text" name="firstname" required><br>
<label>Last Name:</label><input type="text" name="lastname" required><br>
<label>Cell Phone Number:</label><input type="text" name="cellphone" required><br>
<label>Email:</label><input type="email" name="email" required><br>
<label>Address Street:</label><input type="text" name="address_street" required><br>
<label>City:</label><input type="text" name="city" required><br>
<label>State:</label><input type="text" name="state" required><br>
<label>Zip:</label><input type="text" name="zip" required><br>
<label>Role:</label><input type="text" name="role" required><br>
<label>Accept School Policy:</label><input type="checkbox" name="accept_school_policy" value="1"><br>
<input type="submit" value="Create">
</form>
</body>
</html>