summaryrefslogtreecommitdiff
path: root/templates/logout.tmpl
blob: df1302dfa277a76ad4f63c3482bab0ef17d692bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<% c++ #include "user_content.hpp" %>
<% skin view %>
<% view logout uses content::user extends master %>  

<% template title() %>  
  <% include master::title() %> :: Logout
<% end %>  
    
<% template page_content() %>  
	<div>
		You have been logged out of the system. Thanks for using aCMS.
	</div>
	
	<div>
		If you found bugs, report them on Github.
	</div>
	
	<div>
		Otherwise contacting the developers is possible via email directly.
	</div>

	<div>
		If you want to edit pages again, you can of course log in
		<a href="<%= login_link %>">here</a>.
	</div>
<% end template %>  

<% end view %>
<% end skin %>