-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.php
More file actions
executable file
·27 lines (27 loc) · 777 Bytes
/
test.php
File metadata and controls
executable file
·27 lines (27 loc) · 777 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
27
<!DOCTYPE html>
<html>
<head>
<title>Test</title>
</head>
<body>
<form method="POST" action="index.php">
<label>Action:</label>
<input type="text" name="action"><br>
<label>Username:</label>
<input type="text" name="username"><br>
<label>Password:</label>
<input type="password" name="password"><br>
<label>Subject:</label>
<input type="text" name="subject"><br>
<label>Entry:</label>
<textarea name="entry" rows="10" cols="40"></textarea><br>
<label>NoteID:</label>
<input type="text" name="noteID"><br>
<label>NewPassword:</label>
<input type="password" name="newPassword"><br>
<label>Compress:</label>
<input type="text" name="compress"><br>
<input type="submit" name="submit" value="OK">
</form>
</body>
</html>