-
Notifications
You must be signed in to change notification settings - Fork 1
/
create.php
41 lines (41 loc) · 990 Bytes
/
create.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
32
33
34
35
36
37
38
39
40
41
<?php
require "functions.php";
create();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
div {
margin-bottom: 10px;
}
</style>
</head>
<body>
<h1>Create New User</h1>
<hr>
<form action="" method="POST">
<div>
<label for="name">Name:</label>
<input type="text" name="name" id="name" required>
</div>
<div>
<label for="email">Email:</label>
<input type="text" name="email" id="email">
</div>
<div>
<label for="nik">NIK:</label>
<input type="text" name="nik" id="nik" required>
</div>
<div>
<button type="submit" name="submit">Create</button>
</div>
<div>
<a href="index.php">Back to table</a>
</div>
</form>
</body>
</html>