diff options
Diffstat (limited to 'app/views/App')
| -rw-r--r-- | app/views/App/Index.html | 13 | ||||
| -rw-r--r-- | app/views/App/Index.html.bak | 23 | ||||
| -rw-r--r-- | app/views/App/Register.html | 50 |
3 files changed, 86 insertions, 0 deletions
diff --git a/app/views/App/Index.html b/app/views/App/Index.html new file mode 100644 index 0000000..cf36a51 --- /dev/null +++ b/app/views/App/Index.html @@ -0,0 +1,13 @@ +{{set . "title" "Home"}} +{{template "header.html" .}} +{{template "navbar.html" .}} + +<div class="container"> + <div class="text-center"> + <div class="row"> + </div> + </div> +</div> + + +{{template "footer.html" .}} diff --git a/app/views/App/Index.html.bak b/app/views/App/Index.html.bak new file mode 100644 index 0000000..deb2304 --- /dev/null +++ b/app/views/App/Index.html.bak @@ -0,0 +1,23 @@ +{{set . "title" "Home"}} +{{template "header.html" .}} + +<header class="hero-unit" style="background-color:#A9F16C"> + <div class="container"> + <div class="row"> + <div class="hero-text"> + <h1>It works!</h1> + <p></p> + </div> + </div> + </div> +</header> + +<div class="container"> + <div class="row"> + <div class="span6"> + {{template "flash.html" .}} + </div> + </div> +</div> + +{{template "footer.html" .}} diff --git a/app/views/App/Register.html b/app/views/App/Register.html new file mode 100644 index 0000000..9c8683c --- /dev/null +++ b/app/views/App/Register.html @@ -0,0 +1,50 @@ +{{set . "title" "Register"}} +{{template "header.html" .}} +{{template "navbar.html" .}} + + <div> + <div class="noscript"> + <div class="container"> + <div class="row text-center noscript"> + <noscript> + <!--h5>Please enable JavaScript. This page will not work otherwise.</h5--> + </noscript> + <h5>Please note: We haven't started yet! This is just a demo page.</h4> + </div> + </div> + </div> + </div> + + + <div class="container"> + <div class="text-center"> + <div class="row"> + <form class="form-horizontal" method='POST' action='./'> + <fieldset> + <legend> + <h1>Mail Exchange</h1> + <p>Free E-Mail hosting for your own domain. <br>Reqister yourself below and point your MX entry to "mx.iamfabulous.de"</p> + </legend> + + <div class="form-group"> + <label class="col-md-4 control-label" for="domain">Domain*</label> + <div class="col-md-4"> + <input id="domain" name="domain" placeholder="Your domain here." class="form-control input-md" required="" type="text"> + </div> + </div> + + <div class="form-group"> + <label class="col-md-4 control-label" for="submit"></label> + <div class="col-md-4"> + <button id="submit" name="submit" class="btn btn-primary"><span class="glyphicon glyphicon-log-in"></span> Register</button> + </div> + </div> + + + </fieldset> + </form> + </div> + </div> + </div> + +{{template "footer.html" .}} |
