forked from fediversity/fediversity
		
	
		
			
				
	
	
		
			43 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!doctype html>
 | |
| <html lang="en">
 | |
|   <head>
 | |
|     <title>Example End User Policy</title>
 | |
|   </head>
 | |
|   <body>
 | |
|   {% if has_consented %}
 | |
|     <p>
 | |
|       You have already accepted the Example End User Policy.
 | |
|     </p>
 | |
|   {% else %}
 | |
| <h1>Example End User Policy</h1>
 | |
| 
 | |
| These are the terms under which you can use this service. Unless you accept these terms, you
 | |
| will not be allowed to send any messages.
 | |
| 
 | |
| <ol>
 | |
|   <li>You will not be abusive to other users, be they on this server or on an other.
 | |
|   <li>You will not do other nasty stuff.
 | |
|   <li>Basically: you will behave like a good person.
 | |
| </ol>
 | |
| 
 | |
| We promise you a few things too:
 | |
| 
 | |
| <ol>
 | |
|   <li>We'll keep your data safe
 | |
|   <li>We won't snoop on you
 | |
|   <li>We'll only turn you in with the authorities if you do nasty stuff.
 | |
| </ol>
 | |
| 
 | |
| If you accept these terms, you can use this system.
 | |
|     {% if not public_version %}
 | |
|       <!-- The variables used here are only provided when the 'u' param is given to the homeserver -->
 | |
|       <form method="post" action="consent">
 | |
|         <input type="hidden" name="v" value="{{version}}"/>
 | |
|         <input type="hidden" name="u" value="{{user}}"/>
 | |
|         <input type="hidden" name="h" value="{{userhmac}}"/>
 | |
|         <input type="submit" value="I accept"/>
 | |
|       </form>
 | |
|     {% endif %}
 | |
|   {% endif %}
 | |
|   </body>
 | |
| </html>
 | 
