blob: 6f8cd486d24f9286c41e307599abbe36b1d760cf (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<title>Check HTTP Headers online!</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel='shortcut icon' href='/favicon.ico' type='image/x-icon'>
</head>
<body>
<nav class="navbar navbar-default navbar-custom" role="navigation">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="">Home</a>
</div>
</div>
</nav>
<div class="container">
<div class="text-center">
<div class="row">
<form class="form-horizontal" action="/header" method="POST">
<fieldset>
<!-- Form Name -->
<legend>Insert URL</legend>
<!-- Text input-->
<div class="form-group">
<label class="col-md-4 control-label" for="textinput">URL:</label>
<div class="col-md-4">
<input id="url" name="url" placeholder="http://example.com" class="form-control input-md" required="" type="text">
</div>
</div>
<!-- Button -->
<div class="form-group">
<label class="col-md-4 control-label" for=""></label>
<div class="col-md-4">
<button id="" name="" class="btn btn-primary">Submit</button>
</div>
</div>
</fieldset>
</form>
</div>
</div>
</div>
</body>
|