/django/contrib/admin/templates/mako/registration/password_reset_email.html
HTML | 18 lines | 14 code | 4 blank | 0 comment | 0 complexity | fab55386b91fb700eb0d6fc58f26d430 MD5 | raw file
Possible License(s): BSD-3-Clause
1${trans("You're receiving this e-mail because you requested a password reset")} 2for your user account at ${ site_name }. 3 4${trans("Please go to the following page and choose a new password:")} 5<%def name="block_reset_link()"> 6<% 7from django.core.urlresolvers import reverse 8from ccg.utils.webhelpers import url 9kwargs = { 'uidb36':uid,'token':token } 10%> 11${ protocol }://${ domain }${reverse('django.contrib.auth.views.password_reset_confirm',kwargs=kwargs) } 12</%def>${block_reset_link()} 13 14${trans("Your username, in case you've forgotten:")} ${ user.username } 15 16${trans("Thanks for using our site!")} 17 18The ${ site_name } team