diff --git a/app/assets/js/start.js b/app/assets/js/start.js index 3203c8ca..4e22b232 100644 --- a/app/assets/js/start.js +++ b/app/assets/js/start.js @@ -154,7 +154,7 @@ $(function() { var url = '/setup/step' + current; $.post(url, $form.serializeObject()) .done(function(response) { - goForward(current, next); + goToStep(current, next); }) .fail(function(response) { var errors = _.toArray(response.responseJSON.errors); @@ -167,10 +167,13 @@ $(function() { }); return false; + } else { + goToStep(current, next); + $btn.button('reset'); } }); - function goForward(current, next) { + function goToStep(current, next) { // validation was ok. We can go on next step. $('.block-' + current) .removeClass('show') diff --git a/app/assets/sass/partials/_content.scss b/app/assets/sass/partials/_content.scss index 42f4b986..f74444f2 100644 --- a/app/assets/sass/partials/_content.scss +++ b/app/assets/sass/partials/_content.scss @@ -51,6 +51,9 @@ body.dashboard { .sub-header { font-weight: 300; text-transform: uppercase; + a { + text-transform: none; + } } .striped-list { diff --git a/app/views/auth/login.blade.php b/app/views/auth/login.blade.php index 060016f0..668b6df0 100644 --- a/app/views/auth/login.blade.php +++ b/app/views/auth/login.blade.php @@ -1,8 +1,8 @@ @extends('layout.clean') @section('content') -
-
+