diff options
Diffstat (limited to 'index.php')
| -rw-r--r-- | index.php | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/index.php b/index.php new file mode 100644 index 0000000..6f8cd48 --- /dev/null +++ b/index.php @@ -0,0 +1,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> |
