-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhello.php
More file actions
78 lines (70 loc) · 1.48 KB
/
hello.php
File metadata and controls
78 lines (70 loc) · 1.48 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
$errlang=array(
"",
"Note Not Found",
""
);
echo "
<title>NoteText | LanGongDEV</title>
<div class=\"head\"><h1>LanGong NoteText Online</h1></div>
<hr width=\"92%\" >
<br><br>
<div class=\"pg2\">
<br>
<div class=\"pages\">
<center><h1>Welcome</h1>
<table>
<tr><td>
<center>
<h2>Creat a New Note</h2>
<br>
<form action=\"/creat.php\" method=\"post\">
<br>
<div class=\"input\">
<input type=\"text\" name=\"psd\" placeholder=\"Set a password\">
</div>
<br><br>
<div class=\"b\">
<input type=\"submit\" value=\" > Creat \">
</div>
</form>
</center>
</td>
<td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td>
<td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td>
<td></td><td></td><td></td><td></td><td></td><td></td><td></td>
<td>
<center>
<h2>View and Edit</h2>
<form action=\"/jump.php\" method=\"post\">
<br><br>
<div class=\"input\">
<input type=\"number\" name=\"sid\" placeholder=\"";
if($error == "")
echo "Input your note ID";
if($error == 1)
echo $errlang[1];
echo "\">
</div>
<br><br>
<div class=\"b\">
<input type=\"submit\" value=\" > Go \">
</div>
</form>
</center>
</td></tr>
</table>
<br><br><br>
<div class=\"b\">
<input type=\"button\" value=\" Need help? \" onclick=\"window.location.href='/?type=view&id=1'\" >
</div>
</center>
<br>
</div>
<br><br><br>
";
include "foot.php";
echo"
</div>
";
?>