-
Notifications
You must be signed in to change notification settings - Fork 2
/
new_user.php
31 lines (25 loc) · 935 Bytes
/
new_user.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php require_once("includes/session.php"); ?>
<?php require_once("includes/functions.php"); ?>
<?php confirm_logged_in(); ?>
<?php include("includes/header.php"); ?>
<table id="structure">
<tr>
<td id="navigation">
<?php //echo navigation($sel_subject, $sel_page_content); ?>
<!--
<a href="content.php">Cancel</a>
-->
</td>
<td id="page">
<h2>Add User</h2>
<form action="create_user.php" method="POST">
<p>Username: <input type="text" name="username" value="" id="username"/></p>
<p>Password: <input type="password" name="password" value="" id="password"/></p>
<input type="submit" value="Add User" />
</form>
<br/>
<a href="staff.php">Cancel</a>
</td>
</tr>
</table>
<?php require("includes/footer.php"); ?>