summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'index.php')
-rw-r--r--index.php75
1 files changed, 71 insertions, 4 deletions
diff --git a/index.php b/index.php
index 6f8cd48..20aca4b 100644
--- a/index.php
+++ b/index.php
@@ -3,6 +3,61 @@
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
+ <style>
+ html {
+ position: relative;
+ min-height: 100%;
+}
+
+body {
+ margin-bottom: 60px;
+}
+
+a {
+ color: #3083D6;
+}
+
+/* navbar */
+
+.navbar-default {
+ background-color: #3083D6 ;
+ border-color: #3083D6 ;
+ background: #3083D6 ;
+}
+
+.navbar-default .navbar-brand {
+ color: white;
+}
+
+.navbar-default .navbar-brand:hover,
+.navbar-default .navbar-brand:focus {
+}
+
+.navbar-default .navbar-nav > li > a {
+ color: white;
+}
+
+
+/* footer */
+
+.footer {
+ background-color: #3083D6 ;
+ border-color: #3083D6 ;
+ background: #3083D6 ;
+ color: white ;
+ position: absolute;
+ bottom: 0;
+ width: 100%;
+}
+
+.footer-a {
+ color: white;
+}
+.footer-a:hover {
+ color: white;
+ text-decoration: underline;
+}
+ </style>
<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'>
@@ -11,24 +66,27 @@
<nav class="navbar navbar-default navbar-custom" role="navigation">
<div class="container">
<div class="navbar-header">
- <a class="navbar-brand" href="">Home</a>
+ <a class="navbar-brand" href=""><span class="glyphicon glyphicon-home"></span> Home</a>
</div>
</div>
</nav>
<div class="container">
<div class="text-center">
<div class="row">
+ <h3>Retrieve HTTP Headers Online!</h3>
+ <p>Check the response headers for websites. <br> Enter a URL and hit the submit button.</p>
+ <br>
<form class="form-horizontal" action="/header" method="POST">
<fieldset>
+<legend></legend>
<!-- Form Name -->
-<legend>Insert URL</legend>
<!-- Text input-->
<div class="form-group">
- <label class="col-md-4 control-label" for="textinput">URL:</label>
+ <label class="col-md-4 control-label" for="textinput">http://</label>
<div class="col-md-4">
- <input id="url" name="url" placeholder="http://example.com" class="form-control input-md" required="" type="text">
+ <input id="url" name="url" placeholder="Insert URL here." class="form-control input-md" required="" type="text">
</div>
</div>
@@ -46,4 +104,13 @@
</div>
</div>
</div>
+ <div class="footer">
+ <div class="container">
+ <div class="row">
+ <div class="text-right">
+ <p>Copyright 2014 <a class="footer-a" href="//www.moehm.org/" target="_blank" title="https://www.moehm.org/">Maximilian M&ouml;hring</a></p>
+ </div>
+ </div>
+ </div>
+ </div>
</body>