Skip to content

Commit

Permalink
Adjust interface texts (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
stefandesu committed Sep 23, 2020
1 parent eca98b5 commit ede91df
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 7 deletions.
6 changes: 5 additions & 1 deletion views/base.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@
</p>

<p>
After logging in, you will be able to see all data associated with your user account by clicking on the "My Data" link in the top right. You will also be able to delete your user account which results in the immediate removal of all your data from our database.
After logging in, you will be able to see all data associated with your user account by clicking on the "My Data" link
in the top right. You will also be able to delete your user account which results in the immediate removal of all your
data from our database. <b>Note</b> that data from associated applications (e.g. Cocoda and its mapping database) will
<b>not</b> be deleted when
deleting your user account.
</p>

<%- include('footer'); -%>
18 changes: 12 additions & 6 deletions views/login.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,18 @@
</p>

<% config.providers.forEach(provider => { %>
<a class="btn btn-light btn-block" href="<%= baseUrl %>login/<%= provider.id %>">
<% if (provider.image) { %>
<img src="<%= provider.image %>" height="20px" style="margin-right: 5px;" />
<% } %>
Login via <%= provider.name %>
</a>
<p>
<a class="btn btn-light btn-block" href="<%= baseUrl %>login/<%= provider.id %>">
<% if (provider.image) { %>
<img src="<%= provider.image %>" height="20px" style="margin-right: 5px;" />
<% } %>
Login via <%= provider.name %>
</a>
</p>
<% }) %>

<p>
If necessary, a new user account will be created on first login.
</p>

<%- include('footer'); -%>

0 comments on commit ede91df

Please sign in to comment.