30 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "base.html" %}
 | |
| 
 | |
| {% block content %}
 | |
| 
 | |
| <h3 style="font-weight: 400">Verify e-mail to recieve <strong>{{namespace}}/{{repository}}</strong> notifications</h3>
 | |
| <hr style="border:none; border-top: 1px solid #D9D9D9; margin: 25px 0">
 | |
| 
 | |
| <table>
 | |
| 	<tr>
 | |
| 		<td style="font-size: 13px;">A request has been made to send notifications to this email address for the repository <strong>{{namespace}}/{{repository}}</strong>.</td>
 | |
| 	</tr>
 | |
| </table>
 | |
| 
 | |
| <table style="margin: 25px 0;">
 | |
| 	<tr>
 | |
| 		<td style="background: #40B4E5; padding: 10px; border-radius: 3px; color: #fff; font-size: 20px; font-weight: 500"><a style="text-decoration: none; color: #ffffff;" href="{{ app_link('authrepoemail?code=' + token) }}">Confirm Email</a></td>
 | |
| 	</tr>
 | |
| </table>
 | |
| 
 | |
| <table style="margin: 25px 0 35px">
 | |
| 	<tr>
 | |
| 		<td style="font-size: 13px;">If you do not wish to receive notifications for <strong>{{namespace}}/{{repository}}</strong>, you can ignore this message.</td>
 | |
| 	</tr>
 | |
| </table>
 | |
| 
 | |
| 
 | |
| <span style="font-size: 13px;">Thank you,</span><br>
 | |
| <span style="font-size: 13px;">The {{ app_title }} Team</span><br>
 | |
| 
 | |
| {% endblock %}
 |