Skip to content

Instantly share code, notes, and snippets.

View RaphaelTrackoen's full-sized avatar

RaphaelTrackoen

View GitHub Profile
@Bahanix
Bahanix / home.html.erb
Created April 25, 2016 14:27
OpenClassRooms Ruby on Rails logout
# app/views/users/home.html.erb
<% if @current_user %>
<h1>Bienvenue <%= @current_user.name %> !</h1>
<%= form_tag "/users/login", method: :delete do %>
<input type="submit" value="Déconnexion" />
<% end %>
<% else %>
<h1>Bienvenue visiteur anonyme !</h1>
<a href="/users/login">S'identifier</a>
<% end %>