Skip to content

Instantly share code, notes, and snippets.

@bobbungee
Created October 24, 2011 12:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bobbungee/1308953 to your computer and use it in GitHub Desktop.
Save bobbungee/1308953 to your computer and use it in GitHub Desktop.
lolololo
<% title "Signin" %>
<div class="row">
<div class="span16 columns">
<div class="page-header">
<h1>Sign in <small>your friends are waiting.</small></h1>
</div>
<div class="alert-message block-message error">
<p><strong>I can't log in!</strong></p>
<p>Let'sTalk is still in the development phase, and because of this nothing is set in stone. Let'sTalk moved to a
faster server with more space, but sadly this resulted in all of the accounts being deleted.</p>
<p>The good news is that the accounts will be restored soon.</p>
<p><strong>Sorry for the inconvenience, but something like this will never happen once Let'sTalk gets released</st
rong></p>
</div>
<%= form_tag sessions_path, :class => 'form-stacked' do %>
<div class="clearfix">
<%= label_tag :login, "Username or Email" %>
<div class="input">
<%= text_field_tag :login, params[:login], :class => 'xlarge' %>
</div>
</div>
<div class="clearfix">
<%= label_tag :password %>
<div class="input">
<%= password_field_tag :password %>
</div>
</div>
<p>
<%= submit_tag "Sign in", :class => 'btn primary' %>
</p>
<% end %>
<p>Don't have an account? <%= link_to "Sign up!", signup_path %></p>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment