Browse Source
			
			
			
			
				
		Implement change-email, email-verification, account-recovery, and welcome notificationspull/755/head
							committed by
							
								
								GitHub
							
						
					
				
				 33 changed files with 1164 additions and 33 deletions
			
			
		@ -0,0 +1 @@ | 
				
			|||
 | 
				
			|||
@ -0,0 +1,5 @@ | 
				
			|||
ALTER TABLE users ADD COLUMN verified_at DATETIME DEFAULT NULL; | 
				
			|||
ALTER TABLE users ADD COLUMN last_verifying_at DATETIME DEFAULT NULL; | 
				
			|||
ALTER TABLE users ADD COLUMN login_verify_count INTEGER NOT NULL DEFAULT 0; | 
				
			|||
ALTER TABLE users ADD COLUMN email_new VARCHAR(255) DEFAULT NULL; | 
				
			|||
ALTER TABLE users ADD COLUMN email_new_token VARCHAR(16) DEFAULT NULL; | 
				
			|||
@ -0,0 +1 @@ | 
				
			|||
 | 
				
			|||
@ -0,0 +1,5 @@ | 
				
			|||
ALTER TABLE users ADD COLUMN verified_at TIMESTAMP DEFAULT NULL; | 
				
			|||
ALTER TABLE users ADD COLUMN last_verifying_at TIMESTAMP DEFAULT NULL; | 
				
			|||
ALTER TABLE users ADD COLUMN login_verify_count INTEGER NOT NULL DEFAULT 0; | 
				
			|||
ALTER TABLE users ADD COLUMN email_new VARCHAR(255) DEFAULT NULL; | 
				
			|||
ALTER TABLE users ADD COLUMN email_new_token VARCHAR(16) DEFAULT NULL; | 
				
			|||
@ -0,0 +1 @@ | 
				
			|||
 | 
				
			|||
@ -0,0 +1,5 @@ | 
				
			|||
ALTER TABLE users ADD COLUMN verified_at DATETIME DEFAULT NULL; | 
				
			|||
ALTER TABLE users ADD COLUMN last_verifying_at DATETIME DEFAULT NULL; | 
				
			|||
ALTER TABLE users ADD COLUMN login_verify_count INTEGER NOT NULL DEFAULT 0; | 
				
			|||
ALTER TABLE users ADD COLUMN email_new TEXT DEFAULT NULL; | 
				
			|||
ALTER TABLE users ADD COLUMN email_new_token TEXT DEFAULT NULL; | 
				
			|||
@ -0,0 +1,6 @@ | 
				
			|||
Your Email Change | 
				
			|||
<!----------------> | 
				
			|||
<html> | 
				
			|||
<p>To finalize changing your email address enter the following code in web vault: <b>{{token}}</b></p> | 
				
			|||
<p>If you did not try to change an email address, you can safely ignore this email.</p> | 
				
			|||
</html> | 
				
			|||
@ -0,0 +1,129 @@ | 
				
			|||
Your Email Change | 
				
			|||
<!----------------> | 
				
			|||
<html xmlns="http://www.w3.org/1999/xhtml" xmlns="http://www.w3.org/1999/xhtml" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0;"> | 
				
			|||
   <head> | 
				
			|||
      <meta name="viewport" content="width=device-width" /> | 
				
			|||
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | 
				
			|||
      <title>Bitwarden_rs</title> | 
				
			|||
   </head> | 
				
			|||
   <body style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; height: 100%; line-height: 25px; width: 100% !important;" bgcolor="#f6f6f6"> | 
				
			|||
      <style type="text/css"> | 
				
			|||
          body { | 
				
			|||
         margin: 0; | 
				
			|||
         font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | 
				
			|||
         box-sizing: border-box; | 
				
			|||
         font-size: 16px; | 
				
			|||
         color: #333; | 
				
			|||
         line-height: 25px; | 
				
			|||
         -webkit-font-smoothing: antialiased; | 
				
			|||
         -webkit-text-size-adjust: none; | 
				
			|||
         } | 
				
			|||
         body * { | 
				
			|||
         margin: 0; | 
				
			|||
         font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | 
				
			|||
         box-sizing: border-box; | 
				
			|||
         font-size: 16px; | 
				
			|||
         color: #333; | 
				
			|||
         line-height: 25px; | 
				
			|||
         -webkit-font-smoothing: antialiased; | 
				
			|||
         -webkit-text-size-adjust: none; | 
				
			|||
         } | 
				
			|||
         img { | 
				
			|||
         max-width: 100%; | 
				
			|||
         border: none; | 
				
			|||
         } | 
				
			|||
         body { | 
				
			|||
         -webkit-font-smoothing: antialiased; | 
				
			|||
         -webkit-text-size-adjust: none; | 
				
			|||
         width: 100% !important; | 
				
			|||
         height: 100%; | 
				
			|||
         line-height: 25px; | 
				
			|||
         } | 
				
			|||
         body { | 
				
			|||
         background-color: #f6f6f6; | 
				
			|||
         } | 
				
			|||
         @media only screen and (max-width: 600px) { | 
				
			|||
         body { | 
				
			|||
         padding: 0 !important; | 
				
			|||
         } | 
				
			|||
         .container { | 
				
			|||
         padding: 0 !important; | 
				
			|||
         width: 100% !important; | 
				
			|||
         } | 
				
			|||
         .container-table { | 
				
			|||
         padding: 0 !important; | 
				
			|||
         width: 100% !important; | 
				
			|||
         } | 
				
			|||
         .content { | 
				
			|||
         padding: 0 0 10px 0 !important; | 
				
			|||
         } | 
				
			|||
         .content-wrap { | 
				
			|||
         padding: 10px !important; | 
				
			|||
         } | 
				
			|||
         .invoice { | 
				
			|||
         width: 100% !important; | 
				
			|||
         } | 
				
			|||
         .main { | 
				
			|||
         border-right: none !important; | 
				
			|||
         border-left: none !important; | 
				
			|||
         border-radius: 0 !important; | 
				
			|||
         } | 
				
			|||
         .logo { | 
				
			|||
         padding-top: 10px !important; | 
				
			|||
         } | 
				
			|||
         .footer { | 
				
			|||
         margin-top: 10px !important; | 
				
			|||
         } | 
				
			|||
         .indented { | 
				
			|||
         padding-left: 10px; | 
				
			|||
         } | 
				
			|||
         } | 
				
			|||
      </style> | 
				
			|||
      <table class="body-wrap" cellpadding="0" cellspacing="0" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0; width: 100%;" bgcolor="#f6f6f6"> | 
				
			|||
         <tr style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0;"> | 
				
			|||
            <td valign="middle" class="aligncenter middle logo" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0; padding: 20px 0 10px;" align="center"> | 
				
			|||
                <img src="{{url}}/bwrs_static/logo-gray.png" alt="" width="250" height="39" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; border: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0; max-width: 100%;" /> | 
				
			|||
            </td> | 
				
			|||
         </tr> | 
				
			|||
         <tr style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0;"> | 
				
			|||
            <td class="container" align="center" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; clear: both !important; color: #333; display: block !important; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0 auto; max-width: 600px !important; width: 600px;" valign="top"> | 
				
			|||
               <table cellpadding="0" cellspacing="0" class="container-table" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; clear: both !important; color: #333; display: block !important; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0 auto; max-width: 600px !important; width: 600px;"> | 
				
			|||
                  <tr style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0;"> | 
				
			|||
                     <td class="content" align="center" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; display: block; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 0; line-height: 0; margin: 0 auto; max-width: 600px; padding-bottom: 20px;" valign="top"> | 
				
			|||
                        <table class="main" width="100%" cellpadding="0" cellspacing="0" style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; margin: 0; -webkit-text-size-adjust: none; border: 1px solid #e9e9e9; border-radius: 3px;" bgcolor="white"> | 
				
			|||
                           <tr style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;"> | 
				
			|||
                              <td class="content-wrap" style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; padding: 20px; -webkit-text-size-adjust: none;" valign="top"> | 
				
			|||
                                 <table width="100%" cellpadding="0" cellspacing="0" style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;"> | 
				
			|||
                                    <tr style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;"> | 
				
			|||
                                       <td class="content-block" style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; padding: 0 0 10px; -webkit-text-size-adjust: none; text-align: center;" valign="top" align="center"> | 
				
			|||
                                          To finalize changing your email address enter the following code in web vault: <b style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;">{{token}}</b> | 
				
			|||
                                       </td> | 
				
			|||
                                    </tr> | 
				
			|||
                                    <tr style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;"> | 
				
			|||
                                       <td class="content-block last" style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; padding: 0; -webkit-text-size-adjust: none; text-align: center;" valign="top" align="center"> | 
				
			|||
                                         If you did not try to change an email address, you can safely ignore this email.  | 
				
			|||
                                       </td> | 
				
			|||
                                    </tr> | 
				
			|||
                                 </table> | 
				
			|||
                              </td> | 
				
			|||
                           </tr> | 
				
			|||
                        </table> | 
				
			|||
                        <table class="footer" cellpadding="0" cellspacing="0" width="100%" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; clear: both; color: #999; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 12px; line-height: 20px; margin: 0; width: 100%;"> | 
				
			|||
                           <tr style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0;"> | 
				
			|||
                              <td class="aligncenter social-icons" align="center" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #999; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 12px; line-height: 20px; margin: 0; padding: 15px 0 0 0;" valign="top"> | 
				
			|||
                                 <table cellpadding="0" cellspacing="0" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0 auto;"> | 
				
			|||
                                    <tr style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0;"> | 
				
			|||
                                        <td style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #999; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 12px; line-height: 20px; margin: 0; padding: 0 10px;" valign="top"><a href="https://github.com/dani-garcia/bitwarden_rs" target="_blank" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #999; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 12px; line-height: 20px; margin: 0; text-decoration: underline;"><img src="{{url}}/bwrs_static/mail-github.png" alt="GitHub" width="30" height="30" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; border: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0; max-width: 100%;" /></a></td> | 
				
			|||
                                    </tr> | 
				
			|||
                                 </table> | 
				
			|||
                              </td> | 
				
			|||
                           </tr> | 
				
			|||
                        </table> | 
				
			|||
                     </td> | 
				
			|||
                  </tr> | 
				
			|||
               </table> | 
				
			|||
            </td> | 
				
			|||
         </tr> | 
				
			|||
      </table> | 
				
			|||
   </body> | 
				
			|||
</html> | 
				
			|||
@ -0,0 +1,12 @@ | 
				
			|||
Delete Your Account | 
				
			|||
<!----------------> | 
				
			|||
<html> | 
				
			|||
<p> | 
				
			|||
click the link below to delete your account. | 
				
			|||
<br> | 
				
			|||
<br> | 
				
			|||
<a href="{{url}}/#/verify-recover-delete?userId={{user_id}}&token={{token}}&email={{email}}"> | 
				
			|||
Delete Your Account</a> | 
				
			|||
</p> | 
				
			|||
<p>If you did not request this email to delete your account, you can safely ignore this email.</p> | 
				
			|||
</html> | 
				
			|||
@ -0,0 +1,137 @@ | 
				
			|||
Delete Your Account | 
				
			|||
<!----------------> | 
				
			|||
<html xmlns="http://www.w3.org/1999/xhtml" xmlns="http://www.w3.org/1999/xhtml" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0;"> | 
				
			|||
   <head> | 
				
			|||
      <meta name="viewport" content="width=device-width" /> | 
				
			|||
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | 
				
			|||
      <title>Bitwarden_rs</title> | 
				
			|||
   </head> | 
				
			|||
   <body style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; height: 100%; line-height: 25px; width: 100% !important;" bgcolor="#f6f6f6"> | 
				
			|||
      <style type="text/css"> | 
				
			|||
          body { | 
				
			|||
         margin: 0; | 
				
			|||
         font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | 
				
			|||
         box-sizing: border-box; | 
				
			|||
         font-size: 16px; | 
				
			|||
         color: #333; | 
				
			|||
         line-height: 25px; | 
				
			|||
         -webkit-font-smoothing: antialiased; | 
				
			|||
         -webkit-text-size-adjust: none; | 
				
			|||
         } | 
				
			|||
         body * { | 
				
			|||
         margin: 0; | 
				
			|||
         font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | 
				
			|||
         box-sizing: border-box; | 
				
			|||
         font-size: 16px; | 
				
			|||
         color: #333; | 
				
			|||
         line-height: 25px; | 
				
			|||
         -webkit-font-smoothing: antialiased; | 
				
			|||
         -webkit-text-size-adjust: none; | 
				
			|||
         } | 
				
			|||
         img { | 
				
			|||
         max-width: 100%; | 
				
			|||
         border: none; | 
				
			|||
         } | 
				
			|||
         body { | 
				
			|||
         -webkit-font-smoothing: antialiased; | 
				
			|||
         -webkit-text-size-adjust: none; | 
				
			|||
         width: 100% !important; | 
				
			|||
         height: 100%; | 
				
			|||
         line-height: 25px; | 
				
			|||
         } | 
				
			|||
         body { | 
				
			|||
         background-color: #f6f6f6; | 
				
			|||
         } | 
				
			|||
         @media only screen and (max-width: 600px) { | 
				
			|||
         body { | 
				
			|||
         padding: 0 !important; | 
				
			|||
         } | 
				
			|||
         .container { | 
				
			|||
         padding: 0 !important; | 
				
			|||
         width: 100% !important; | 
				
			|||
         } | 
				
			|||
         .container-table { | 
				
			|||
         padding: 0 !important; | 
				
			|||
         width: 100% !important; | 
				
			|||
         } | 
				
			|||
         .content { | 
				
			|||
         padding: 0 0 10px 0 !important; | 
				
			|||
         } | 
				
			|||
         .content-wrap { | 
				
			|||
         padding: 10px !important; | 
				
			|||
         } | 
				
			|||
         .invoice { | 
				
			|||
         width: 100% !important; | 
				
			|||
         } | 
				
			|||
         .main { | 
				
			|||
         border-right: none !important; | 
				
			|||
         border-left: none !important; | 
				
			|||
         border-radius: 0 !important; | 
				
			|||
         } | 
				
			|||
         .logo { | 
				
			|||
         padding-top: 10px !important; | 
				
			|||
         } | 
				
			|||
         .footer { | 
				
			|||
         margin-top: 10px !important; | 
				
			|||
         } | 
				
			|||
         .indented { | 
				
			|||
         padding-left: 10px; | 
				
			|||
         } | 
				
			|||
         } | 
				
			|||
      </style> | 
				
			|||
      <table class="body-wrap" cellpadding="0" cellspacing="0" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0; width: 100%;" bgcolor="#f6f6f6"> | 
				
			|||
         <tr style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0;"> | 
				
			|||
            <td valign="middle" class="aligncenter middle logo" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0; padding: 20px 0 10px;" align="center"> | 
				
			|||
                <img src="{{url}}/bwrs_static/logo-gray.png" alt="" width="250" height="39" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; border: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0; max-width: 100%;" /> | 
				
			|||
            </td> | 
				
			|||
         </tr> | 
				
			|||
         <tr style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0;"> | 
				
			|||
            <td class="container" align="center" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; clear: both !important; color: #333; display: block !important; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0 auto; max-width: 600px !important; width: 600px;" valign="top"> | 
				
			|||
               <table cellpadding="0" cellspacing="0" class="container-table" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; clear: both !important; color: #333; display: block !important; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0 auto; max-width: 600px !important; width: 600px;"> | 
				
			|||
                  <tr style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0;"> | 
				
			|||
                     <td class="content" align="center" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; display: block; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 0; line-height: 0; margin: 0 auto; max-width: 600px; padding-bottom: 20px;" valign="top"> | 
				
			|||
                        <table class="main" width="100%" cellpadding="0" cellspacing="0" style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; margin: 0; -webkit-text-size-adjust: none; border: 1px solid #e9e9e9; border-radius: 3px;" bgcolor="white"> | 
				
			|||
                           <tr style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;"> | 
				
			|||
                              <td class="content-wrap" style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; padding: 20px; -webkit-text-size-adjust: none;" valign="top"> | 
				
			|||
                                 <table width="100%" cellpadding="0" cellspacing="0" style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;"> | 
				
			|||
                                    <tr style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;"> | 
				
			|||
                                       <td class="content-block" style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; padding: 0 0 10px; -webkit-text-size-adjust: none; text-align: center;" valign="top" align="center"> | 
				
			|||
                                          click the link below to delete your account. | 
				
			|||
                                       </td> | 
				
			|||
                                    </tr> | 
				
			|||
                                    <tr style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;"> | 
				
			|||
                                       <td class="content-block" style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; padding: 0 0 10px; -webkit-text-size-adjust: none; text-align: center;" valign="top" align="center"> | 
				
			|||
                                          <a href="{{url}}/#/verify-recover-delete?userId={{user_id}}&token={{token}}&email={{email}}" | 
				
			|||
                                             clicktracking=off target="_blank" style="color: #ffffff; text-decoration: none; text-align: center; cursor: pointer; display: inline-block; border-radius: 5px; background-color: #3c8dbc; border-color: #3c8dbc; border-style: solid; border-width: 10px 20px; margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;"> | 
				
			|||
                                          Delete Your Account | 
				
			|||
                                          </a> | 
				
			|||
                                       </td> | 
				
			|||
                                    </tr> | 
				
			|||
                                    <tr style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;"> | 
				
			|||
                                       <td class="content-block last" style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; padding: 0; -webkit-text-size-adjust: none; text-align: center;" valign="top" align="center"> | 
				
			|||
                                          If you did not request this email to delete your account, you can safely ignore this email. | 
				
			|||
                                       </td> | 
				
			|||
                                    </tr> | 
				
			|||
                                 </table> | 
				
			|||
                              </td> | 
				
			|||
                           </tr> | 
				
			|||
                        </table> | 
				
			|||
                        <table class="footer" cellpadding="0" cellspacing="0" width="100%" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; clear: both; color: #999; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 12px; line-height: 20px; margin: 0; width: 100%;"> | 
				
			|||
                           <tr style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0;"> | 
				
			|||
                              <td class="aligncenter social-icons" align="center" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #999; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 12px; line-height: 20px; margin: 0; padding: 15px 0 0 0;" valign="top"> | 
				
			|||
                                 <table cellpadding="0" cellspacing="0" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0 auto;"> | 
				
			|||
                                    <tr style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0;"> | 
				
			|||
                                        <td style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #999; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 12px; line-height: 20px; margin: 0; padding: 0 10px;" valign="top"><a href="https://github.com/dani-garcia/bitwarden_rs" target="_blank" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #999; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 12px; line-height: 20px; margin: 0; text-decoration: underline;"><img src="{{url}}/bwrs_static/mail-github.png" alt="GitHub" width="30" height="30" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; border: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0; max-width: 100%;" /></a></td> | 
				
			|||
                                    </tr> | 
				
			|||
                                 </table> | 
				
			|||
                              </td> | 
				
			|||
                           </tr> | 
				
			|||
                        </table> | 
				
			|||
                     </td> | 
				
			|||
                  </tr> | 
				
			|||
               </table> | 
				
			|||
            </td> | 
				
			|||
         </tr> | 
				
			|||
      </table> | 
				
			|||
   </body> | 
				
			|||
</html> | 
				
			|||
@ -1,3 +1,7 @@ | 
				
			|||
Sorry, you have no password hint... | 
				
			|||
Your master password hint | 
				
			|||
<!----------------> | 
				
			|||
Sorry, you have not specified any password hint... | 
				
			|||
You (or someone) recently requested your master password hint. Unfortunately, your account does not have a master password hint. | 
				
			|||
 | 
				
			|||
If you cannot remember your master password, there is no way to recover your data. The only option to gain access to your account again is to <a href="{{url}}/#/recover-delete">delete the account</a> so that you can register again and start over. All data associated with your account will be deleted. | 
				
			|||
 | 
				
			|||
If you did not request your master password hint you can safely ignore this email. | 
				
			|||
 | 
				
			|||
@ -0,0 +1,12 @@ | 
				
			|||
Verify Your Email | 
				
			|||
<!----------------> | 
				
			|||
<html> | 
				
			|||
<p> | 
				
			|||
Verify this email address for your account by clicking the link below. | 
				
			|||
<br> | 
				
			|||
<br> | 
				
			|||
<a href="{{url}}/#/verify-email/?userId={{user_id}}&token={{token}}"> | 
				
			|||
Verify Email Address Now</a> | 
				
			|||
</p> | 
				
			|||
<p>If you did not request to verify your account, you can safely ignore this email.</p> | 
				
			|||
</html> | 
				
			|||
@ -0,0 +1,137 @@ | 
				
			|||
Verify Your Email | 
				
			|||
<!----------------> | 
				
			|||
<html xmlns="http://www.w3.org/1999/xhtml" xmlns="http://www.w3.org/1999/xhtml" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0;"> | 
				
			|||
   <head> | 
				
			|||
      <meta name="viewport" content="width=device-width" /> | 
				
			|||
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | 
				
			|||
      <title>Bitwarden_rs</title> | 
				
			|||
   </head> | 
				
			|||
   <body style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; height: 100%; line-height: 25px; width: 100% !important;" bgcolor="#f6f6f6"> | 
				
			|||
      <style type="text/css"> | 
				
			|||
          body { | 
				
			|||
         margin: 0; | 
				
			|||
         font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | 
				
			|||
         box-sizing: border-box; | 
				
			|||
         font-size: 16px; | 
				
			|||
         color: #333; | 
				
			|||
         line-height: 25px; | 
				
			|||
         -webkit-font-smoothing: antialiased; | 
				
			|||
         -webkit-text-size-adjust: none; | 
				
			|||
         } | 
				
			|||
         body * { | 
				
			|||
         margin: 0; | 
				
			|||
         font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | 
				
			|||
         box-sizing: border-box; | 
				
			|||
         font-size: 16px; | 
				
			|||
         color: #333; | 
				
			|||
         line-height: 25px; | 
				
			|||
         -webkit-font-smoothing: antialiased; | 
				
			|||
         -webkit-text-size-adjust: none; | 
				
			|||
         } | 
				
			|||
         img { | 
				
			|||
         max-width: 100%; | 
				
			|||
         border: none; | 
				
			|||
         } | 
				
			|||
         body { | 
				
			|||
         -webkit-font-smoothing: antialiased; | 
				
			|||
         -webkit-text-size-adjust: none; | 
				
			|||
         width: 100% !important; | 
				
			|||
         height: 100%; | 
				
			|||
         line-height: 25px; | 
				
			|||
         } | 
				
			|||
         body { | 
				
			|||
         background-color: #f6f6f6; | 
				
			|||
         } | 
				
			|||
         @media only screen and (max-width: 600px) { | 
				
			|||
         body { | 
				
			|||
         padding: 0 !important; | 
				
			|||
         } | 
				
			|||
         .container { | 
				
			|||
         padding: 0 !important; | 
				
			|||
         width: 100% !important; | 
				
			|||
         } | 
				
			|||
         .container-table { | 
				
			|||
         padding: 0 !important; | 
				
			|||
         width: 100% !important; | 
				
			|||
         } | 
				
			|||
         .content { | 
				
			|||
         padding: 0 0 10px 0 !important; | 
				
			|||
         } | 
				
			|||
         .content-wrap { | 
				
			|||
         padding: 10px !important; | 
				
			|||
         } | 
				
			|||
         .invoice { | 
				
			|||
         width: 100% !important; | 
				
			|||
         } | 
				
			|||
         .main { | 
				
			|||
         border-right: none !important; | 
				
			|||
         border-left: none !important; | 
				
			|||
         border-radius: 0 !important; | 
				
			|||
         } | 
				
			|||
         .logo { | 
				
			|||
         padding-top: 10px !important; | 
				
			|||
         } | 
				
			|||
         .footer { | 
				
			|||
         margin-top: 10px !important; | 
				
			|||
         } | 
				
			|||
         .indented { | 
				
			|||
         padding-left: 10px; | 
				
			|||
         } | 
				
			|||
         } | 
				
			|||
      </style> | 
				
			|||
      <table class="body-wrap" cellpadding="0" cellspacing="0" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0; width: 100%;" bgcolor="#f6f6f6"> | 
				
			|||
         <tr style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0;"> | 
				
			|||
            <td valign="middle" class="aligncenter middle logo" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0; padding: 20px 0 10px;" align="center"> | 
				
			|||
                <img src="{{url}}/bwrs_static/logo-gray.png" alt="" width="250" height="39" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; border: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0; max-width: 100%;" /> | 
				
			|||
            </td> | 
				
			|||
         </tr> | 
				
			|||
         <tr style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0;"> | 
				
			|||
            <td class="container" align="center" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; clear: both !important; color: #333; display: block !important; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0 auto; max-width: 600px !important; width: 600px;" valign="top"> | 
				
			|||
               <table cellpadding="0" cellspacing="0" class="container-table" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; clear: both !important; color: #333; display: block !important; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0 auto; max-width: 600px !important; width: 600px;"> | 
				
			|||
                  <tr style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0;"> | 
				
			|||
                     <td class="content" align="center" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; display: block; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 0; line-height: 0; margin: 0 auto; max-width: 600px; padding-bottom: 20px;" valign="top"> | 
				
			|||
                        <table class="main" width="100%" cellpadding="0" cellspacing="0" style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; margin: 0; -webkit-text-size-adjust: none; border: 1px solid #e9e9e9; border-radius: 3px;" bgcolor="white"> | 
				
			|||
                           <tr style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;"> | 
				
			|||
                              <td class="content-wrap" style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; padding: 20px; -webkit-text-size-adjust: none;" valign="top"> | 
				
			|||
                                 <table width="100%" cellpadding="0" cellspacing="0" style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;"> | 
				
			|||
                                    <tr style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;"> | 
				
			|||
                                       <td class="content-block" style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; padding: 0 0 10px; -webkit-text-size-adjust: none; text-align: center;" valign="top" align="center"> | 
				
			|||
                                          Verify this email address for your account by clicking the link below. | 
				
			|||
                                       </td> | 
				
			|||
                                    </tr> | 
				
			|||
                                    <tr style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;"> | 
				
			|||
                                       <td class="content-block" style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; padding: 0 0 10px; -webkit-text-size-adjust: none; text-align: center;" valign="top" align="center"> | 
				
			|||
                                          <a href="{{url}}/#/verify-email/?userId={{user_id}}&token={{token}}" | 
				
			|||
                                             clicktracking=off target="_blank" style="color: #ffffff; text-decoration: none; text-align: center; cursor: pointer; display: inline-block; border-radius: 5px; background-color: #3c8dbc; border-color: #3c8dbc; border-style: solid; border-width: 10px 20px; margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;"> | 
				
			|||
                                          Verify Email Address Now | 
				
			|||
                                          </a> | 
				
			|||
                                       </td> | 
				
			|||
                                    </tr> | 
				
			|||
                                    <tr style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;"> | 
				
			|||
                                       <td class="content-block last" style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; padding: 0; -webkit-text-size-adjust: none; text-align: center;" valign="top" align="center"> | 
				
			|||
                                          If you did not request to verify your account, you can safely ignore this email. | 
				
			|||
                                       </td> | 
				
			|||
                                    </tr> | 
				
			|||
                                 </table> | 
				
			|||
                              </td> | 
				
			|||
                           </tr> | 
				
			|||
                        </table> | 
				
			|||
                        <table class="footer" cellpadding="0" cellspacing="0" width="100%" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; clear: both; color: #999; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 12px; line-height: 20px; margin: 0; width: 100%;"> | 
				
			|||
                           <tr style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0;"> | 
				
			|||
                              <td class="aligncenter social-icons" align="center" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #999; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 12px; line-height: 20px; margin: 0; padding: 15px 0 0 0;" valign="top"> | 
				
			|||
                                 <table cellpadding="0" cellspacing="0" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0 auto;"> | 
				
			|||
                                    <tr style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0;"> | 
				
			|||
                                        <td style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #999; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 12px; line-height: 20px; margin: 0; padding: 0 10px;" valign="top"><a href="https://github.com/dani-garcia/bitwarden_rs" target="_blank" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #999; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 12px; line-height: 20px; margin: 0; text-decoration: underline;"><img src="{{url}}/bwrs_static/mail-github.png" alt="GitHub" width="30" height="30" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; border: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0; max-width: 100%;" /></a></td> | 
				
			|||
                                    </tr> | 
				
			|||
                                 </table> | 
				
			|||
                              </td> | 
				
			|||
                           </tr> | 
				
			|||
                        </table> | 
				
			|||
                     </td> | 
				
			|||
                  </tr> | 
				
			|||
               </table> | 
				
			|||
            </td> | 
				
			|||
         </tr> | 
				
			|||
      </table> | 
				
			|||
   </body> | 
				
			|||
</html> | 
				
			|||
@ -0,0 +1,8 @@ | 
				
			|||
Welcome | 
				
			|||
<!----------------> | 
				
			|||
<html> | 
				
			|||
<p> | 
				
			|||
Thank you for creating an account at <a href="{{url}}">{{url}}</a>. You may now log in with your new account. | 
				
			|||
</p> | 
				
			|||
<p>If you did not request to create an account, you can safely ignore this email.</p> | 
				
			|||
</html> | 
				
			|||
@ -0,0 +1,129 @@ | 
				
			|||
Welcome | 
				
			|||
<!----------------> | 
				
			|||
<html xmlns="http://www.w3.org/1999/xhtml" xmlns="http://www.w3.org/1999/xhtml" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0;"> | 
				
			|||
   <head> | 
				
			|||
      <meta name="viewport" content="width=device-width" /> | 
				
			|||
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | 
				
			|||
      <title>Bitwarden_rs</title> | 
				
			|||
   </head> | 
				
			|||
   <body style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; height: 100%; line-height: 25px; width: 100% !important;" bgcolor="#f6f6f6"> | 
				
			|||
      <style type="text/css"> | 
				
			|||
          body { | 
				
			|||
         margin: 0; | 
				
			|||
         font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | 
				
			|||
         box-sizing: border-box; | 
				
			|||
         font-size: 16px; | 
				
			|||
         color: #333; | 
				
			|||
         line-height: 25px; | 
				
			|||
         -webkit-font-smoothing: antialiased; | 
				
			|||
         -webkit-text-size-adjust: none; | 
				
			|||
         } | 
				
			|||
         body * { | 
				
			|||
         margin: 0; | 
				
			|||
         font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | 
				
			|||
         box-sizing: border-box; | 
				
			|||
         font-size: 16px; | 
				
			|||
         color: #333; | 
				
			|||
         line-height: 25px; | 
				
			|||
         -webkit-font-smoothing: antialiased; | 
				
			|||
         -webkit-text-size-adjust: none; | 
				
			|||
         } | 
				
			|||
         img { | 
				
			|||
         max-width: 100%; | 
				
			|||
         border: none; | 
				
			|||
         } | 
				
			|||
         body { | 
				
			|||
         -webkit-font-smoothing: antialiased; | 
				
			|||
         -webkit-text-size-adjust: none; | 
				
			|||
         width: 100% !important; | 
				
			|||
         height: 100%; | 
				
			|||
         line-height: 25px; | 
				
			|||
         } | 
				
			|||
         body { | 
				
			|||
         background-color: #f6f6f6; | 
				
			|||
         } | 
				
			|||
         @media only screen and (max-width: 600px) { | 
				
			|||
         body { | 
				
			|||
         padding: 0 !important; | 
				
			|||
         } | 
				
			|||
         .container { | 
				
			|||
         padding: 0 !important; | 
				
			|||
         width: 100% !important; | 
				
			|||
         } | 
				
			|||
         .container-table { | 
				
			|||
         padding: 0 !important; | 
				
			|||
         width: 100% !important; | 
				
			|||
         } | 
				
			|||
         .content { | 
				
			|||
         padding: 0 0 10px 0 !important; | 
				
			|||
         } | 
				
			|||
         .content-wrap { | 
				
			|||
         padding: 10px !important; | 
				
			|||
         } | 
				
			|||
         .invoice { | 
				
			|||
         width: 100% !important; | 
				
			|||
         } | 
				
			|||
         .main { | 
				
			|||
         border-right: none !important; | 
				
			|||
         border-left: none !important; | 
				
			|||
         border-radius: 0 !important; | 
				
			|||
         } | 
				
			|||
         .logo { | 
				
			|||
         padding-top: 10px !important; | 
				
			|||
         } | 
				
			|||
         .footer { | 
				
			|||
         margin-top: 10px !important; | 
				
			|||
         } | 
				
			|||
         .indented { | 
				
			|||
         padding-left: 10px; | 
				
			|||
         } | 
				
			|||
         } | 
				
			|||
      </style> | 
				
			|||
      <table class="body-wrap" cellpadding="0" cellspacing="0" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0; width: 100%;" bgcolor="#f6f6f6"> | 
				
			|||
         <tr style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0;"> | 
				
			|||
            <td valign="middle" class="aligncenter middle logo" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0; padding: 20px 0 10px;" align="center"> | 
				
			|||
                <img src="{{url}}/bwrs_static/logo-gray.png" alt="" width="250" height="39" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; border: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0; max-width: 100%;" /> | 
				
			|||
            </td> | 
				
			|||
         </tr> | 
				
			|||
         <tr style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0;"> | 
				
			|||
            <td class="container" align="center" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; clear: both !important; color: #333; display: block !important; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0 auto; max-width: 600px !important; width: 600px;" valign="top"> | 
				
			|||
               <table cellpadding="0" cellspacing="0" class="container-table" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; clear: both !important; color: #333; display: block !important; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0 auto; max-width: 600px !important; width: 600px;"> | 
				
			|||
                  <tr style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0;"> | 
				
			|||
                     <td class="content" align="center" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; display: block; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 0; line-height: 0; margin: 0 auto; max-width: 600px; padding-bottom: 20px;" valign="top"> | 
				
			|||
                        <table class="main" width="100%" cellpadding="0" cellspacing="0" style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; margin: 0; -webkit-text-size-adjust: none; border: 1px solid #e9e9e9; border-radius: 3px;" bgcolor="white"> | 
				
			|||
                           <tr style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;"> | 
				
			|||
                              <td class="content-wrap" style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; padding: 20px; -webkit-text-size-adjust: none;" valign="top"> | 
				
			|||
                                 <table width="100%" cellpadding="0" cellspacing="0" style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;"> | 
				
			|||
                                    <tr style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;"> | 
				
			|||
                                       <td class="content-block" style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; padding: 0 0 10px; -webkit-text-size-adjust: none; text-align: center;" valign="top" align="center"> | 
				
			|||
                                          Thank you for creating an account at <a href="{{url}}">{{url}}</a>. You may now log in with your new account. | 
				
			|||
                                       </td> | 
				
			|||
                                    </tr> | 
				
			|||
                                    <tr style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;"> | 
				
			|||
                                       <td class="content-block last" style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; padding: 0; -webkit-text-size-adjust: none; text-align: center;" valign="top" align="center"> | 
				
			|||
                                          If you did not request to create an account, you can safely ignore this email. | 
				
			|||
                                       </td> | 
				
			|||
                                    </tr> | 
				
			|||
                                 </table> | 
				
			|||
                              </td> | 
				
			|||
                           </tr> | 
				
			|||
                        </table> | 
				
			|||
                        <table class="footer" cellpadding="0" cellspacing="0" width="100%" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; clear: both; color: #999; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 12px; line-height: 20px; margin: 0; width: 100%;"> | 
				
			|||
                           <tr style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0;"> | 
				
			|||
                              <td class="aligncenter social-icons" align="center" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #999; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 12px; line-height: 20px; margin: 0; padding: 15px 0 0 0;" valign="top"> | 
				
			|||
                                 <table cellpadding="0" cellspacing="0" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0 auto;"> | 
				
			|||
                                    <tr style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0;"> | 
				
			|||
                                        <td style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #999; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 12px; line-height: 20px; margin: 0; padding: 0 10px;" valign="top"><a href="https://github.com/dani-garcia/bitwarden_rs" target="_blank" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #999; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 12px; line-height: 20px; margin: 0; text-decoration: underline;"><img src="{{url}}/bwrs_static/mail-github.png" alt="GitHub" width="30" height="30" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; border: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0; max-width: 100%;" /></a></td> | 
				
			|||
                                    </tr> | 
				
			|||
                                 </table> | 
				
			|||
                              </td> | 
				
			|||
                           </tr> | 
				
			|||
                        </table> | 
				
			|||
                     </td> | 
				
			|||
                  </tr> | 
				
			|||
               </table> | 
				
			|||
            </td> | 
				
			|||
         </tr> | 
				
			|||
      </table> | 
				
			|||
   </body> | 
				
			|||
</html> | 
				
			|||
@ -0,0 +1,12 @@ | 
				
			|||
Welcome | 
				
			|||
<!----------------> | 
				
			|||
<html> | 
				
			|||
<p> | 
				
			|||
Thank you for creating an account at <a href="{{url}}">{{url}}</a>. Before you can login with your new account, you must verify this email address by clicking the link below. | 
				
			|||
<br> | 
				
			|||
<br> | 
				
			|||
<a href="{{url}}/#/verify-email/?userId={{user_id}}&token={{token}}"> | 
				
			|||
Verify Email Address Now</a> | 
				
			|||
</p> | 
				
			|||
<p>If you did not request to create an account, you can safely ignore this email.</p> | 
				
			|||
</html> | 
				
			|||
@ -0,0 +1,137 @@ | 
				
			|||
Welcome | 
				
			|||
<!----------------> | 
				
			|||
<html xmlns="http://www.w3.org/1999/xhtml" xmlns="http://www.w3.org/1999/xhtml" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0;"> | 
				
			|||
   <head> | 
				
			|||
      <meta name="viewport" content="width=device-width" /> | 
				
			|||
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | 
				
			|||
      <title>Bitwarden_rs</title> | 
				
			|||
   </head> | 
				
			|||
   <body style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; height: 100%; line-height: 25px; width: 100% !important;" bgcolor="#f6f6f6"> | 
				
			|||
      <style type="text/css"> | 
				
			|||
          body { | 
				
			|||
         margin: 0; | 
				
			|||
         font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | 
				
			|||
         box-sizing: border-box; | 
				
			|||
         font-size: 16px; | 
				
			|||
         color: #333; | 
				
			|||
         line-height: 25px; | 
				
			|||
         -webkit-font-smoothing: antialiased; | 
				
			|||
         -webkit-text-size-adjust: none; | 
				
			|||
         } | 
				
			|||
         body * { | 
				
			|||
         margin: 0; | 
				
			|||
         font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | 
				
			|||
         box-sizing: border-box; | 
				
			|||
         font-size: 16px; | 
				
			|||
         color: #333; | 
				
			|||
         line-height: 25px; | 
				
			|||
         -webkit-font-smoothing: antialiased; | 
				
			|||
         -webkit-text-size-adjust: none; | 
				
			|||
         } | 
				
			|||
         img { | 
				
			|||
         max-width: 100%; | 
				
			|||
         border: none; | 
				
			|||
         } | 
				
			|||
         body { | 
				
			|||
         -webkit-font-smoothing: antialiased; | 
				
			|||
         -webkit-text-size-adjust: none; | 
				
			|||
         width: 100% !important; | 
				
			|||
         height: 100%; | 
				
			|||
         line-height: 25px; | 
				
			|||
         } | 
				
			|||
         body { | 
				
			|||
         background-color: #f6f6f6; | 
				
			|||
         } | 
				
			|||
         @media only screen and (max-width: 600px) { | 
				
			|||
         body { | 
				
			|||
         padding: 0 !important; | 
				
			|||
         } | 
				
			|||
         .container { | 
				
			|||
         padding: 0 !important; | 
				
			|||
         width: 100% !important; | 
				
			|||
         } | 
				
			|||
         .container-table { | 
				
			|||
         padding: 0 !important; | 
				
			|||
         width: 100% !important; | 
				
			|||
         } | 
				
			|||
         .content { | 
				
			|||
         padding: 0 0 10px 0 !important; | 
				
			|||
         } | 
				
			|||
         .content-wrap { | 
				
			|||
         padding: 10px !important; | 
				
			|||
         } | 
				
			|||
         .invoice { | 
				
			|||
         width: 100% !important; | 
				
			|||
         } | 
				
			|||
         .main { | 
				
			|||
         border-right: none !important; | 
				
			|||
         border-left: none !important; | 
				
			|||
         border-radius: 0 !important; | 
				
			|||
         } | 
				
			|||
         .logo { | 
				
			|||
         padding-top: 10px !important; | 
				
			|||
         } | 
				
			|||
         .footer { | 
				
			|||
         margin-top: 10px !important; | 
				
			|||
         } | 
				
			|||
         .indented { | 
				
			|||
         padding-left: 10px; | 
				
			|||
         } | 
				
			|||
         } | 
				
			|||
      </style> | 
				
			|||
      <table class="body-wrap" cellpadding="0" cellspacing="0" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0; width: 100%;" bgcolor="#f6f6f6"> | 
				
			|||
         <tr style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0;"> | 
				
			|||
            <td valign="middle" class="aligncenter middle logo" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0; padding: 20px 0 10px;" align="center"> | 
				
			|||
                <img src="{{url}}/bwrs_static/logo-gray.png" alt="" width="250" height="39" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; border: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0; max-width: 100%;" /> | 
				
			|||
            </td> | 
				
			|||
         </tr> | 
				
			|||
         <tr style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0;"> | 
				
			|||
            <td class="container" align="center" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; clear: both !important; color: #333; display: block !important; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0 auto; max-width: 600px !important; width: 600px;" valign="top"> | 
				
			|||
               <table cellpadding="0" cellspacing="0" class="container-table" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; clear: both !important; color: #333; display: block !important; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0 auto; max-width: 600px !important; width: 600px;"> | 
				
			|||
                  <tr style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0;"> | 
				
			|||
                     <td class="content" align="center" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; display: block; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 0; line-height: 0; margin: 0 auto; max-width: 600px; padding-bottom: 20px;" valign="top"> | 
				
			|||
                        <table class="main" width="100%" cellpadding="0" cellspacing="0" style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; margin: 0; -webkit-text-size-adjust: none; border: 1px solid #e9e9e9; border-radius: 3px;" bgcolor="white"> | 
				
			|||
                           <tr style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;"> | 
				
			|||
                              <td class="content-wrap" style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; padding: 20px; -webkit-text-size-adjust: none;" valign="top"> | 
				
			|||
                                 <table width="100%" cellpadding="0" cellspacing="0" style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;"> | 
				
			|||
                                    <tr style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;"> | 
				
			|||
                                       <td class="content-block" style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; padding: 0 0 10px; -webkit-text-size-adjust: none; text-align: center;" valign="top" align="center"> | 
				
			|||
                                          Thank you for creating an account at <a href="{{url}}">{{url}}</a>. Before you can login with your new account, you must verify this email address by clicking the link below. | 
				
			|||
                                       </td> | 
				
			|||
                                    </tr> | 
				
			|||
                                    <tr style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;"> | 
				
			|||
                                       <td class="content-block" style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; padding: 0 0 10px; -webkit-text-size-adjust: none; text-align: center;" valign="top" align="center"> | 
				
			|||
                                          <a href="{{url}}/#/verify-email/?userId={{user_id}}&token={{token}}" | 
				
			|||
                                             clicktracking=off target="_blank" style="color: #ffffff; text-decoration: none; text-align: center; cursor: pointer; display: inline-block; border-radius: 5px; background-color: #3c8dbc; border-color: #3c8dbc; border-style: solid; border-width: 10px 20px; margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;"> | 
				
			|||
                                          Verify Email Address Now | 
				
			|||
                                          </a> | 
				
			|||
                                       </td> | 
				
			|||
                                    </tr> | 
				
			|||
                                    <tr style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;"> | 
				
			|||
                                       <td class="content-block last" style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; padding: 0; -webkit-text-size-adjust: none; text-align: center;" valign="top" align="center"> | 
				
			|||
                                          If you did not request to create an account, you can safely ignore this email. | 
				
			|||
                                       </td> | 
				
			|||
                                    </tr> | 
				
			|||
                                 </table> | 
				
			|||
                              </td> | 
				
			|||
                           </tr> | 
				
			|||
                        </table> | 
				
			|||
                        <table class="footer" cellpadding="0" cellspacing="0" width="100%" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; clear: both; color: #999; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 12px; line-height: 20px; margin: 0; width: 100%;"> | 
				
			|||
                           <tr style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0;"> | 
				
			|||
                              <td class="aligncenter social-icons" align="center" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #999; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 12px; line-height: 20px; margin: 0; padding: 15px 0 0 0;" valign="top"> | 
				
			|||
                                 <table cellpadding="0" cellspacing="0" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0 auto;"> | 
				
			|||
                                    <tr style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0;"> | 
				
			|||
                                        <td style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #999; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 12px; line-height: 20px; margin: 0; padding: 0 10px;" valign="top"><a href="https://github.com/dani-garcia/bitwarden_rs" target="_blank" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; box-sizing: border-box; color: #999; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 12px; line-height: 20px; margin: 0; text-decoration: underline;"><img src="{{url}}/bwrs_static/mail-github.png" alt="GitHub" width="30" height="30" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; border: none; box-sizing: border-box; color: #333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 25px; margin: 0; max-width: 100%;" /></a></td> | 
				
			|||
                                    </tr> | 
				
			|||
                                 </table> | 
				
			|||
                              </td> | 
				
			|||
                           </tr> | 
				
			|||
                        </table> | 
				
			|||
                     </td> | 
				
			|||
                  </tr> | 
				
			|||
               </table> | 
				
			|||
            </td> | 
				
			|||
         </tr> | 
				
			|||
      </table> | 
				
			|||
   </body> | 
				
			|||
</html> | 
				
			|||
					Loading…
					
					
				
		Reference in new issue