Add terms of service andpoint; reference it from registration and login forms
This commit is contained in:
parent
515754b9b7
commit
1e24365324
6 changed files with 21 additions and 1 deletions
|
@ -126,6 +126,7 @@ privacy policy. For the sake of this readme, we assume that you are using the
|
||||||
The travelynx container does not contain a mail server, so it needs a
|
The travelynx container does not contain a mail server, so it needs a
|
||||||
separate SMTP server to send mail. It does not receive mail.
|
separate SMTP server to send mail. It does not receive mail.
|
||||||
* create local/imprint.html.ep and enter imprint as well as privacy policy data.
|
* create local/imprint.html.ep and enter imprint as well as privacy policy data.
|
||||||
|
* create local/terms-of-service.html.ep and enter your terms of service.
|
||||||
* Configure your web server to reverse-provy requests to the travelynx
|
* Configure your web server to reverse-provy requests to the travelynx
|
||||||
instance. See `examples/nginx-site` for an nginx config.
|
instance. See `examples/nginx-site` for an nginx config.
|
||||||
|
|
||||||
|
|
|
@ -2354,6 +2354,7 @@ sub startup {
|
||||||
$r->get('/changelog')->to('static#changelog');
|
$r->get('/changelog')->to('static#changelog');
|
||||||
$r->get('/impressum')->to('static#imprint');
|
$r->get('/impressum')->to('static#imprint');
|
||||||
$r->get('/imprint')->to('static#imprint');
|
$r->get('/imprint')->to('static#imprint');
|
||||||
|
$r->get('/tos')->to('static#tos');
|
||||||
$r->get('/legend')->to('static#legend');
|
$r->get('/legend')->to('static#legend');
|
||||||
$r->get('/offline.html')->to('static#offline');
|
$r->get('/offline.html')->to('static#offline');
|
||||||
$r->get('/api/v1/:user_action/:token')->to('api#get_v1');
|
$r->get('/api/v1/:user_action/:token')->to('api#get_v1');
|
||||||
|
|
|
@ -46,6 +46,7 @@ sub send_registration_mail {
|
||||||
|
|
||||||
my $ua = $self->req->headers->user_agent;
|
my $ua = $self->req->headers->user_agent;
|
||||||
my $reg_url = $self->url_for('reg')->to_abs->scheme('https');
|
my $reg_url = $self->url_for('reg')->to_abs->scheme('https');
|
||||||
|
my $tos_url = $self->url_for('tos')->to_abs->scheme('https');
|
||||||
my $imprint_url = $self->url_for('impressum')->to_abs->scheme('https');
|
my $imprint_url = $self->url_for('impressum')->to_abs->scheme('https');
|
||||||
|
|
||||||
my $body = "Hallo, ${user}!\n\n";
|
my $body = "Hallo, ${user}!\n\n";
|
||||||
|
@ -54,7 +55,8 @@ sub send_registration_mail {
|
||||||
$body
|
$body
|
||||||
.= "Falls die Registrierung von dir ausging, kannst du den Account unter\n";
|
.= "Falls die Registrierung von dir ausging, kannst du den Account unter\n";
|
||||||
$body .= "${reg_url}/${user_id}/${token}\n";
|
$body .= "${reg_url}/${user_id}/${token}\n";
|
||||||
$body .= "freischalten.\n\n";
|
$body .= "freischalten.\n";
|
||||||
|
$body .= "Beachte dabei die Nutzungsbedingungen: ${tos_url}\n\n";
|
||||||
$body
|
$body
|
||||||
.= "Falls nicht, ignoriere diese Mail bitte. Nach etwa 48 Stunden wird deine\n";
|
.= "Falls nicht, ignoriere diese Mail bitte. Nach etwa 48 Stunden wird deine\n";
|
||||||
$body
|
$body
|
||||||
|
|
|
@ -35,4 +35,10 @@ sub offline {
|
||||||
$self->render('offline');
|
$self->render('offline');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sub tos {
|
||||||
|
my ($self) = @_;
|
||||||
|
|
||||||
|
$self->render('terms-of-service');
|
||||||
|
}
|
||||||
|
|
||||||
1;
|
1;
|
||||||
|
|
|
@ -73,6 +73,11 @@
|
||||||
<label for="password">Passwort</label>
|
<label for="password">Passwort</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col s12 m12 l12">
|
||||||
|
Mit der Anmeldung stimmst du den <a href="/tos">Nutzungsbedingdungen</a> zu.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col s3 m3 l3">
|
<div class="col s3 m3 l3">
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -26,6 +26,11 @@
|
||||||
<label for="password2">Passwort wiederholen</label>
|
<label for="password2">Passwort wiederholen</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col s12 m12 l12">
|
||||||
|
Mit deiner Registrierung stimmst du den <a href="/tos">Nutzungsbedingdungen</a> zu.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col s3 m3 l3">
|
<div class="col s3 m3 l3">
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue