-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestjson.html
101 lines (79 loc) · 1.87 KB
/
testjson.html
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
Remove this if you use the .htaccess -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>testjson</title>
<meta name="description" content="">
<meta name="author" content="Jaroslaw Nowosad">
<meta name="viewport" content="width=device-width; initial-scale=1.0">
<!-- Replace favicon.ico & apple-touch-icon.png in the root of your domain and delete these references -->
<link rel="shortcut icon" href="/favicon.ico">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
</head>
<body>
<div>
<header>
<h1>11th/json/test.php</h1>
</header>
<div>
<form action="http://yarenty.com/11th/json/test.php" method="post">
<textarea name="value" id="value" style="min-width: 400px; min-height: 200px" >{
"username":"pub2",
"password":"pass2",
"name":"Google PUB 2",
"contactname":"John Doe 2",
"geo":"123,213 123,321",
"address":"Docker, Dublin",
"email":"[email protected]",
"phone":"08772297463",
"facebook":"google",
"twitter":"google"
}</textarea>
<br/>
<br/>
<input type="submit" />
</form>
<br/>
TO REGISTER: <b>http://yarenty.com/11th/json/register.php</b>
<pre>
{
"username":"pub",
"password":"pass",
"name":"Google PUB",
"contactname":"John Doe",
"geo":"123,213 123,321",
"address":"Docker, Dublin",
"email":"[email protected]",
"phone":"08772297463",
"facebook":"google",
"twitter":"google"
}
</pre>
<br/><br/>
TO LOGIN: <b>http://yarenty.com/11th/json/login.php</b>
<pre>
{
"username":"pub",
"password":"pass"
}
</pre>
<br/><br/>
TO LIST: <b>http://yarenty.com/11th/json/list.php</b>
<pre>
{
"username":"pub",
"password":"pass"
}
</pre>
</div>
<footer>
<p>
© Copyright by Jaro Nowosad
</p>
</footer>
</div>
</body>
</html>