-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.php
More file actions
47 lines (47 loc) · 1.27 KB
/
input.php
File metadata and controls
47 lines (47 loc) · 1.27 KB
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
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Rizky Eventa Bahtiar</title>
</head>
<body>
<form method="post" action="insert.php">
<table align="center">
<tr>
<td colspan="2" style="background-color: #2196F3; color: #fff">
<h3><center>DATA</center></h3>
</td>
</tr>
<tr>
<td>ID</td>
<td><input type="text" name="id"></td>
</tr>
<tr>
<td>Username</td>
<td><input type="text" name="username"></td>
</tr>
<tr>
<td>Password</td>
<td><input type="password" name="password"></td>
</tr>
<tr>
<td style="vertical-align: top">Level</td>
<td>
<input type="radio" name="level" value="admin">Admin<br>
<input type="radio" name="level" value="user">User<br>
<input type="radio" name="level" value="guest">Guest
</td>
</tr>
<tr>
<td>Fullname</td>
<td><input type="text" name="fullname"></td>
</tr>
<tr>
<td colspan="2">
<center><button type="submit" value="simpan">SIMPAN</button></center>
</td>
</tr>
</table>
</form>
</body>
</html>