blob: 4f070ac4d91943bcc44f8959b265adc565d3a73f (
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
|
{{template "header.html"}}
{{template "navbar.html"}}
{{if .Error}}
<div class="container">
<div class="row">
{{range .Error}}
<p id="dd-alert-danger" class="col-md-4 col-md-offset-4 alert alert-danger alert-dismissible shadow-z-2" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="close"><span aria-hidden="true">×</span></button>
{{.}}
</p>
{{end}}
</div>
</div>
{{end}}
{{if .Success}}
<div class="container">
<div class="row">
{{range .Success}}
<p id="dd-alert-success" class="col-md-4 col-md-offset-4 alert alert-success alert-dismissible shadow-z-2" role="alert"> <button type="button" class="close" data-dismiss="alert" aria-label="close"><span aria-hidden="true">×</span></button>
{{.}}
</p>
{{end}}
</div>
</div>
{{end}}
<div class="jumbotron">
<div class="container">
<h1>Libremail</h1>
<p>Tired of getting spam daily? You just need quickly a mail adress? Or you own a domain and want to use it to recieve E-Mails?
<strong>You are in the right place.</strong>
<br>It's completly free and ad-free.</p>
<p><a class="btn btn-primary btn-lg btn-raised" href="/about" role="button">Learn more »</a></p>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-4">
<h2>Easy & Quick</h2>
<p>It's just 2 clicks away.<br>
Choose a free mail adress and sign up.</p>
<p><a class="btn btn-primary btn-raised" href="/register" role="button">Sign up »</a></p>
</div>
<div class="col-md-4">
<h2>Secure</h2>
<p>We are using state of the art technologies and enforcing encryption on every step.</p>
<p><a class="btn btn-primary btn-raised" href="/about" role="button">About us »</a></p>
</div>
<div class="col-md-4">
<h2>Customizable</h2>
<p>Point your own domain to this server. Get everything out of the box.</p>
<p><a class="btn btn-primary btn-raised" href="/features" role="button">Features »</a></p>
</div>
</div>
<div class="row">
<div class="col-md-4">
<h2>Open Source</h2>
<p>We only use free and open source software. You can use it to host your own solution.</p>
<p><a class="btn btn-primary btn-raised" href="/about" role="button">Read the source »</a></p>
</div>
<div class="col-md-4">
<h2>Read more</h2>
<p>Follow my blog to read more and find more projects I am working on.</p>
<p><a class="btn btn-primary btn-raised" href="https://www.iamfabulous.de" role="button">Follow me »</a></p>
</div>
</div>
</div>
{{template "footer.html"}}
|