aboutsummaryrefslogtreecommitdiffstats
path: root/www/index.html
blob: 973c32b74974dc123a3ba7baa55a4f7543b09bb3 (plain)
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
<!DOCTYPE html>
<html>
	<style>
		body{margin:auto;width:40vw;}
		iframe{height:2em;margin:auto;width:100%;}
		label{display:inline-block;text-align:right;width:12vw;}
		input{width:25vw;margin:0.5em;}
		input[type=submit]{width:50%;margin:0.5em auto;display:block;}
		h1,h3,p{text-align:center;}
	</style>
	<head>
		<title>JAC's link shortener</title>
	</head>
	<body>
		<h1>Just another link shortener</h1>
		<p>Try it out!</p>
		<form action="/api/linkadd" target="result" accept-charset="utf-8">
			<div>
				<label>URL:</label>
				<input type="url"name="url"required/>
			</div>
			<div>
				<label>Path (optional):</label>
				<input type="text"name="try"/>
			</div>
			<input name="format"value="html"hidden/>
			<input type="submit"value="Shorten URL!"/>
		</form>
		<h3>Result:</h3>
		<iframe name="result"scrolling="no"></iframe>
		<p> For API documentation, go to <a href="/docs">documentation page</a></p>
	</body>
</html>