summaryrefslogtreecommitdiff
path: root/html/register.html
blob: 60902412cf378d8e414c1cf2990f28b66039d3f4 (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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{{template "header.html" "Register | maxmail.xyz"}}
{{template "navbar.html"}}
{{template "alert.html" .}}

<div class="container">
	<div class="row">
		<div class="col-md-12">
			<div class="text-center">
				<h1>You only need to sign up!</h1>
			</div>
		</div>
	</div>
</div>
<br>
 <div class="jumbotron">
<div class="container">
	<div class="row">
<form class="form-horizontal" method='post' action='/create'>
	<fieldset>

		<!-- Form Name -->
		<!--div class="text-center">
			<legend>
		<h1 class="form-signin-heading">Sign up</h1>
				</legend>
		</div-->

		<!-- Text input-->
		<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 desired mail address." class="form-control input-md" required="" type="email">
			</div>
		</div>

		<!-- Text input-->
		<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 choice." class="form-control input-md" required="" type="email">
			</div>
		</div>

		<!-- Text input-->
		<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." class="form-control input-md" required="" type="password">
			</div>
		</div>

		<!-- Text input-->
		<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>

		<!-- Checkbox-->
		<div class="form-group text-center">
			<div class="checkbox">
				<label>
					<input type="checkbox" name="legal" required>
					I accept the <a href="/tos" title="Terms of Service">Terms of Service</a> and the <a href="/privacy" title="Privacy Policy">Privacy Policy</a>.
				</label>
			</div>
		</div>

		<!-- Button -->
		<div class="form-group">
			<label class="col-md-4 control-label" for="submit"></label>
			<div class="col-md-4">
				<button class="btn btn-primary btn-raised btn-lg btn-block"><span class="fa fa-paper-plane-o"></span> Submit &raquo;</button>
			</div>
		</div>

	</fieldset>
</form>

		</div>
	</div>
</div>
<br>
<div class="container">
	<div class="row">
		<div class="col-md-6">
			<h2>Your password</h2>
			<p>We don't store your password in clear text.
			<br>It is needed to authenticate yourself with the mail server. Please choose a strong password.</p>
		</div>
		<div class="col-md-6">
			<h2>After Sign up</h2>
			<p>You can use the webmail interface to login or connect a custom client like your phone or thunderbird.</p>
		</div>
	</div>
</div>
{{template "footer.html" .Language}}