aboutsummaryrefslogtreecommitdiff
path: root/app/views/welcome/index.html.erb
diff options
context:
space:
mode:
authorhellekin <hellekin@cepheide.org>2020-10-05 22:10:26 +0200
committerhellekin <hellekin@cepheide.org>2020-10-05 22:10:26 +0200
commit046c210e91fc03e1c670a0a28ea4849968c77056 (patch)
tree6c6437c7d9a6f252950e3ba1edc9fe12398938df /app/views/welcome/index.html.erb
parentd0efb8c068a86436359b3c20950d427c7a6a27cd (diff)
downloadincommon-map-046c210e91fc03e1c670a0a28ea4849968c77056.tar.gz
Add Authentication logic
The ApplicationController provides a `current_user` method (and helper) to access the authenticated user (if any). The WelcomeController provides minimal logic to authenticate against DiscourseSSO. Current state is that one can login and logout. Views need a lot of work.
Diffstat (limited to 'app/views/welcome/index.html.erb')
-rw-r--r--app/views/welcome/index.html.erb8
1 files changed, 8 insertions, 0 deletions
diff --git a/app/views/welcome/index.html.erb b/app/views/welcome/index.html.erb
new file mode 100644
index 0000000..a1fa276
--- /dev/null
+++ b/app/views/welcome/index.html.erb
@@ -0,0 +1,8 @@
+<h1>Bienvenue à l'atelier carto d'IN COMMON</h1>
+
+<% if current_user.present? %>
+ <p>Hi <%= h current_user.name %>, please <%= link_to 'proceed to your dashboard', url_for(action: 'dashboard') %>.</p>
+ <p>You may <%= link_to 'sign off', logout_url %>.</p>
+<% else %>
+ <p><%= link_to "S'identifier avec Talk.incommon.cc", '/authenticate' %></p>
+<% end %>