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

<% template title() %>  
  <% include master::title() %> :: Login
<% end %>  
    
<% template page_content() %>  
	<div>
		<form method="post" action=""><% csrf %>
			<table>
				<% form as_table login %>  
			</table>
		</form> 
	</div>
	<div>
		Register for a new account <a href="<%= register_link %>">here</a>.
	</div>
<% end template %>  

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