-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaddUser.php
More file actions
26 lines (23 loc) · 794 Bytes
/
Copy pathaddUser.php
File metadata and controls
26 lines (23 loc) · 794 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="styles/bootstrap.css" rel="stylesheet" />
<link href="styles/styles.css" rel="stylesheet" />
<link href="styles/font-awesome.css" rel="stylesheet" />
</head>
<body>
<?php include 'top-nav.php';?>
<?php include 'sidebar.php';?>
<div>
<div id="main" class="col-xs-6" style="padding-top: 70px">
<form action="lib/createUser.php" method="POST">
Username: <input id="username" name="username" type="text"><br>
Password: <input id=password name="password" type="password"><br>
<input type="submit" value="Create User">
</form>
</div>
</div>
</body>
</html>