18 lines
448 B
Text
18 lines
448 B
Text
% layout 'base';
|
|
<h1>Rough, Slow, Stupid, Contrary Photohosting</h1>
|
|
|
|
<% if (is_user_authenticated()) { %>
|
|
%= include 'images_list'
|
|
<% } else { %>
|
|
|
|
<div class="login-form">
|
|
<form method="post" action="<%= url_for('login') %>" >
|
|
<input type="text" name="username" >
|
|
<input type="password" name="password">
|
|
<input type="submit" value="Login">
|
|
</form>
|
|
</div>
|
|
|
|
<% } %>
|
|
|
|
|