mirror of
https://github.com/glmdev/eecs448-lab10
synced 2026-03-02 03:39:24 +00:00
Initial commit
This commit is contained in:
14
CreateUser.html
Normal file
14
CreateUser.html
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
require_once './configuration.php';
|
||||
|
||||
$page = new common\Page();
|
||||
|
||||
$page->title('Exercise 2 - EECS 448 Lab 10')
|
||||
->header('Create a New User')
|
||||
->form(system_url('CreateUser.php'), function() use($page) {
|
||||
$page->writes('<input type="text" placeholder="Username" name="username" required/>');
|
||||
$page->submit();
|
||||
});
|
||||
|
||||
$page->write();
|
||||
Reference in New Issue
Block a user