summaryrefslogtreecommitdiff
path: root/app/views/App/Register.html
blob: 9c8683cb3d5372069ef89df4548ed51870ad330c (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
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" .}}