1
0
mirror of https://github.com/glmdev/eecs448-lab10 synced 2024-10-27 19:14:00 +00:00
eecs448-lab10/CreatePosts.html

17 lines
551 B
HTML
Raw Normal View History

2020-12-06 19:58:02 +00:00
<?php
require_once './configuration.php';
$page = new common\Page;
$page->title('Exercise 3 - EECS 448 Lab 10')
->header('Create a New Post')
->div(function() use($page) {
$page->form(system_url('CreatePosts.php'), function() use($page) {
$page->writes('<input type="text" name="username" placeholder="Username" required/>')->line_break();
$page->writes('<textarea name="content" placeholder="Post content" required></textarea>')->line_break();
$page->submit();
});
})
->write();