summaryrefslogtreecommitdiff
path: root/templates/login.tmpl
blob: e965ba12c68a032a673cac727e3bf6fa5da7c9f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<% 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>
        <%= captcha %>
      </form> 
	</div>
<% end template %>  

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