44 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
| <head>
 | |
|     <meta charset="UTF-8">
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | |
|     <title>Admin Center - Subscribers</title>
 | |
|     <link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
 | |
| </head>
 | |
| <body>
 | |
| 
 | |
|     <h1>Subscribers</h1>
 | |
|     <p>
 | |
|       <a href="{{ url_for('send_update') }}">Send Update Email</a>|
 | |
|       <a href="{{ url_for('logout') }}">Logout</a>
 | |
|     </p>
 | |
| 
 | |
|     {% with messages = get_flashed_messages(with_categories=true) %}
 | |
|       {% if messages %}
 | |
|         {% for category, message in messages %}
 | |
|           <div class="flash">{{ message }}</div>
 | |
|         {% endfor %}
 | |
|       {% endif %}
 | |
|     {% endwith %}
 | |
| 
 | |
|     {% if emails %}
 | |
|         <table>
 | |
|             <thead>
 | |
|                 <tr>
 | |
|                     <th>Email Address</th>
 | |
|                 </tr>
 | |
|             </thead>
 | |
|             <tbody>
 | |
|                 {% for email in emails %}
 | |
|                     <tr>
 | |
|                         <td>{{ email }}</td>
 | |
|                     </tr>
 | |
|                 {% endfor %}
 | |
|             </tbody>
 | |
|         </table>
 | |
|     {% else %}
 | |
|         <p>No subscribers found.</p>
 | |
|     {% endif %}
 | |
| </body>
 | |
| </html>
 | 
