Socialify

Folder ..

Viewing email_change_verification_email.html
27 lines (26 loc) • 1.0 KB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Change Email</title>
  </head>
  <body>
    <h3>Change Your Current Email</h3>
    <p>Hi {{ user }},</p>
    <p>
      We received a request to change your email address on {{ site_name }}. To
      verify and change your email address, please click the link below.
    </p>
    <a
      href="{{ protocol }}{{ domain }}{% url 'users:changeemail' 'changeemail' uid token %}"
      >Change Email</a
    >
    <p>If the above link does not work, copy and paste the URL below into your browser:</p>
    <a href="{{ protocol }}{{ domain }}{% url 'users:changeemail' 'changeemail' uid token %}">{{ protocol }}{{ domain }}{% url 'users:changeemail' 'changeemail' uid token %}</a>

    <p>Please ignore this email if you did not make this request.</p>
    <p>Thanks,</p>
    <p>Bobby from {{ site_name }}</p>
  </body>
</html>