simplog/user/index.php

18 lines
268 B
PHP

<?php
require "../includes/htmlcode.php";
start_html("simlog user interface");
include "../includes/login.inc";
?>
<h1>simplog user interface</h1>
<p>
<a href="new.php">Create new post</a>
</p>
<p>
<a href="edit.php">Edit existing post</a>
</p>
<?php
end_html();
?>