blob: 79eb7b1a28b98818612c9654898cfb9aaae758a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html>
<html>
<head><meta charset="utf-8"></head>
<body>
<form action="/getargs?a=b&c=d&" method="get" class="form-example" target="tgt">
<div>
<label>The url ot be shortened:</label>
<input type="text" name="url" required/>
</div>
<div>
<label>Try to allocate at this addess (optional):</label>
<input type="text" name="try"/>
</div>
<input name="format" value="htlm" hidden="true"/>
<input type="submit" value="Test arguments" />
</form>
<iframe name="tgt"/>
</body>
</html>
|