33 lines
1.5 KiB
HTML
33 lines
1.5 KiB
HTML
{% load i18n %}{% autoescape off %}
|
|
<html>
|
|
<head>
|
|
<link href='https://fonts.googleapis.com/css?family=Roboto&display=swap' rel='stylesheet' type='text/css'>
|
|
<style>
|
|
html {font-family: 'Roboto' !important;}html h6 {font-family: 'Roboto' !important;font-size: 1.0em;}html h5 {font-family: 'Roboto' !important;font-size: 1.1em;}html h4 {font-family: 'Roboto' !important;font-size: 1.3em;}html h3 {font-family: 'Roboto' !important;font-size: 1.5em;}html h2 {font-family: 'Roboto' !important;font-size: 1.7em;}html h1 {font-family: 'Roboto' !important;font-size: 2em;}body p{font-family: 'Roboto' !important;font-size: 0.9; color: #000000;}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h3>Digitale Agentur | Passwort vergessen</h3>
|
|
<hr>
|
|
<p>
|
|
Hallo {{user.first_name}} {{user.last_name}},<br /><br />
|
|
Sie haben ein neues Passwort für den Zugang ihrer Agentur <b>{{user.profile.agency.name}}</b> angefordert. Bitte gehen Sie auf folgenden Link, um ein Passwort zu erstellen:
|
|
<p>
|
|
{% block reset_link %}
|
|
<h4><a href="{{ protocol }}://{{ domain }}{% url 'password_reset_confirm' uidb64=uid token=token %}">{{ protocol }}://{{ domain }}{% url 'password_reset_confirm' uidb64=uid token=token %}</a></h4>
|
|
{% endblock %}
|
|
<h4>Ihr Benutzername: {{ user.get_username }}</h4>
|
|
</p>
|
|
Sollten Sie kein Passwort angefordert haben, ignorieren Sie diese E-Mail.
|
|
</p>
|
|
<p>
|
|
Vielen Dank, dass Sie die Plattform <b>Digitale Agentur</b> nutzen!
|
|
<br /><br />
|
|
Mit freundlichen Grüßen
|
|
<br /><br />
|
|
Ihr Team von Digitale Agentur
|
|
</p>
|
|
</body>
|
|
</html>
|
|
{% endautoescape %}
|