blob: e9508045ed14dc917414d59bf580cd223ea78c36 (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
{{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='/register'>
<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="name">Name*</label>
<div class="col-md-4">
<input id="name" name="name" placeholder="Your name here." class="form-control input-md" required="" type="text">
</div>
</div>
<div class="form-group">
<label class="col-md-4 control-label" for="email">Email*</label>
<div class="col-md-4">
<input id="email" name="email" placeholder="Your E-Mail here." class="form-control input-md" required="" type="text">
</div>
</div>
<div class="form-group">
<label class="col-md-4 control-label" for="confirmEmail">Confirm Email*</label>
<div class="col-md-4">
<input id="confirmEmail" name="confirmEmail" placeholder="Confirm your E-Mail." class="form-control input-md" required="" type="text">
</div>
</div>
<div class="form-group">
<label class="col-md-4 control-label" for="password">Password*</label>
<div class="col-md-4">
<input id="password" name="password" placeholder="Your password here." class="form-control input-md" required="" type="password">
</div>
</div>
<div class="form-group">
<label class="col-md-4 control-label" for="confirmPassword">Confirm Password*</label>
<div class="col-md-4">
<input id="confirmPassword" name="confirmPassword" placeholder="Confirm your password." class="form-control input-md" required="" type="password">
</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" .}}
|