Correct wording and styling around confirmation emails
This commit is contained in:
parent
9ff9b55692
commit
742680620d
2 changed files with 13 additions and 1 deletions
|
@ -12,6 +12,18 @@
|
|||
<!-- Bootstrap core CSS -->
|
||||
<link rel="stylesheet" href="https://gettogether.community{% static 'css/bootstrap/css/bootstrap.min.css' %}">
|
||||
{%block styles %}{% endblock %}
|
||||
<style>
|
||||
body {
|
||||
padding-top: 5rem;
|
||||
}
|
||||
.starter-template {
|
||||
padding: 3rem 1.5rem;
|
||||
text-align: center;
|
||||
}
|
||||
form {
|
||||
display: inline;
|
||||
}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
<div class="col-12 align-left">
|
||||
<h2>Unable to confirm email</h2>
|
||||
|
||||
<p>The confirmation link is invalid. Either it does not below to {{request.user.email}} or the confirmation key has expired.</p>
|
||||
<p>The confirmation link is invalid. Either it does not belong to <strong>{{request.user.email}}</strong> or the confirmation key has expired.</p>
|
||||
|
||||
<p><a href={% url 'send-confirm-email' %}" class="btn btn-primary">Resend confirmation email</a></p>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue