Correct wording and styling around confirmation emails

This commit is contained in:
Michael Hall 2018-02-28 16:44:29 -05:00
parent 9ff9b55692
commit 742680620d
2 changed files with 13 additions and 1 deletions

View file

@ -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>

View file

@ -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>