Skip to content

Commit

Permalink
Updated style
Browse files Browse the repository at this point in the history
Added button "new identity"
Corrected flash messages colors
Improved accessibility
  • Loading branch information
julien committed Jun 12, 2010
1 parent 3bbce6a commit 38dcb66
Show file tree
Hide file tree
Showing 19 changed files with 2,853 additions and 159 deletions.
22 changes: 0 additions & 22 deletions README

This file was deleted.

22 changes: 22 additions & 0 deletions README.textile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
h1. vauban

__Storing ans securing your web identities__

h2. About

p. Vauban is a simple webapplication to manage your web identities, i.e. all your accounts for all your web applications (gmail, facebook, linkedin, banking services…)

A demo is available on "Vauban beta website":http://vauban.heroku.com

h2. License

Copyright 2010 "Zeneffy Labs":http://labs.zeneffy.fr - J.Raigneau (julien@raigneau.net)

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
7 changes: 3 additions & 4 deletions app/views/identities/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@
<% end %>
</tbody>
</table>

<br />

<%= link_to 'New identity', new_identity_path %>
<div class="sbar">
<span class="sbar-btn"> <% link_to new_identity_path, :style => "margin-top:3px;margin-bottom:2px" do %><img alt="New-project" class="plus-sign" src="/images/new-identity.png" />New Identity<%end%></span>
</div>
8 changes: 4 additions & 4 deletions app/views/layouts/application.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<div id="header-wrapper">
<div id="header">
<div id="logo">
<h1> <%= link_to "Vauban", :controller => "application", :action => "index" %></h1>
<h1> <%= link_to "Vauban", :controller => "application", :action => "index" %><sup>beta</sup></h1>
<p>Storing and securing your web identities</p>
</div>
<div id="menu">
Expand Down Expand Up @@ -49,11 +49,11 @@
<div id="flash_<%= key %>"><%=h value %></div>
<% end -%>
</div>
<script>
<!-- <script>
$(document).ready(function(){
$("#flash").fadeOut(3000);
$("#flash").fadeOut(5000);
});
</script>
</script>-->

<%= yield %>
</div><!--end entry -->
Expand Down
7 changes: 7 additions & 0 deletions app/views/user_sessions/new.html.erb
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
<% content_for :title do %>Login to access your account<% end %>
<% content_for :tab do %>login<% end %>

<script>
$(document).ready(function() {
// focus on the first text input field in the first field on the page
$("input[type='text']:first", document.forms[0]).focus();
});
</script>

<% form_for @user_session do |f| %>
<%= f.error_messages %>
<p>
Expand Down
Binary file modified db/development.sqlite3
Binary file not shown.

0 comments on commit 38dcb66

Please sign in to comment.