2019-03-04 18:22:40 +00:00
|
|
|
% if (my $invalid = stash('invalid')) {
|
2019-04-30 08:46:46 +00:00
|
|
|
%= include '_invalid_input', invalid => $invalid
|
2019-03-04 18:22:40 +00:00
|
|
|
% }
|
2019-04-02 17:40:04 +00:00
|
|
|
%= form_for '/register' => (method => 'POST') => begin
|
|
|
|
%= csrf_field
|
2021-04-20 19:59:17 +00:00
|
|
|
%= hidden_field dt => DateTime->now(time_zone => 'Europe/Berlin')->epoch
|
2019-04-02 17:40:04 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="input-field col l6 m12 s12">
|
|
|
|
<i class="material-icons prefix">account_circle</i>
|
|
|
|
%= text_field 'user', id => 'account', class => 'validate', required => undef, pattern => '[0-9a-zA-Z_-]+', maxlength => 60, autocomplete => 'username'
|
|
|
|
<label for="account">Name (alphanumerisch)</label>
|
2019-02-22 20:56:19 +00:00
|
|
|
</div>
|
2019-04-02 17:40:04 +00:00
|
|
|
<div class="input-field col l6 m12 s12">
|
|
|
|
<i class="material-icons prefix">email</i>
|
|
|
|
%= email_field 'email', id => 'email', class => 'validate', required => undef, maxlength => 250
|
|
|
|
<label for="email">Mail-Adresse</label>
|
2019-02-22 20:56:19 +00:00
|
|
|
</div>
|
2019-04-02 17:40:04 +00:00
|
|
|
<div class="input-field col l6 m12 s12">
|
|
|
|
<i class="material-icons prefix">lock</i>
|
|
|
|
%= password_field 'password', id => 'password', class => 'validate', required => undef, minlength => 8, autocomplete => 'new-password'
|
|
|
|
<label for="password">Passwort</label>
|
|
|
|
</div>
|
|
|
|
<div class="input-field col l6 m12 s12">
|
|
|
|
<i class="material-icons prefix">lock</i>
|
|
|
|
%= password_field 'password2', id => 'password2', class => 'validate', required => undef, minlength => 8, autocomplete => 'new-password'
|
|
|
|
<label for="password2">Passwort wiederholen</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col s3 m3 l3">
|
|
|
|
</div>
|
|
|
|
<div class="col s6 m6 l6 center-align">
|
|
|
|
<button class="btn waves-effect waves-light" type="submit" name="action" value="register">
|
|
|
|
Registrieren
|
|
|
|
<i class="material-icons right">send</i>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div class="col s3 m3 l3">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
%= end
|
2019-03-02 17:08:48 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col s12">
|
2019-03-11 16:17:15 +00:00
|
|
|
<p>
|
|
|
|
Nach der Registrierung wird ein für 48 Stunden gültiger
|
|
|
|
Bestätigungslink an die angegebene Mail-Adresse geschickt. Eine
|
|
|
|
Anmeldung ist erst nach Bestätigung der Mail-Adresse möglich.
|
|
|
|
</p>
|
2019-03-02 17:08:48 +00:00
|
|
|
<p>
|
|
|
|
Die Mail-Adresse wird ausschließlich zur Bestätigung der Anmeldung
|
|
|
|
und für die "Passwort vergessen"-Funktionalität verwendet und nicht
|
2019-03-05 17:19:14 +00:00
|
|
|
an Dritte weitergegeben. Die <a
|
2019-03-07 17:36:11 +00:00
|
|
|
href="/impressum">Datenschutzerklärung</a> beschreibt weitere
|
2019-03-05 17:19:14 +00:00
|
|
|
erhobene Daten sowie deren Zweck und Speicherfristen.
|
2019-04-30 10:47:32 +00:00
|
|
|
Accounts werden nach einem Jahr ohne Aktivität automatisch gelöscht.
|
2019-03-02 17:08:48 +00:00
|
|
|
</p>
|
|
|
|
<p>
|
2019-03-05 17:19:14 +00:00
|
|
|
Bitte beachten: Travelynx ist ein privat betriebenes Projekt ohne
|
|
|
|
Verfügbarkeitsgarantie. Unangekündigte Downtimes oder eine
|
|
|
|
kurzfristige Einstellung dieser Seite sind nicht vorgesehen, aber
|
|
|
|
möglich.
|
2019-03-02 17:08:48 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-04-30 16:24:30 +00:00
|
|
|
|
|
|
|
%= include '_footer', version => stash('version')
|