You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
361 B

<?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();